annotate kernel/make.py @ 296:9417caea2eb3
Directorized some backend files
author |
Windel Bouwman |
date |
Sun, 01 Dec 2013 13:36:58 +0100 |
parents |
6aa721e7b10b |
children |
158068af716c |
rev |
line source |
293
|
1 #!/usr/bin/env python
|
|
2
|
|
3 import sys
|
|
4 import os
|
|
5 sys.path.insert(0, os.path.join('..', 'python'))
|
|
6 import zcc
|
283
|
7
|
296
|
8 arglist = ['memory.c3', 'kernel.c3', 'syscall.c3', 'process.c3', 'schedule.c3']
|
293
|
9 arglist += ['--target', 'arm']
|
|
10 arglist += ['--dumpasm']
|
|
11 arglist += ['--log', 'debug']
|
283
|
12
|
293
|
13 args = zcc.parser.parse_args(arglist)
|
|
14 zcc.main(args)
|