Mercurial > lcfOS
annotate kernel/make.py @ 300:158068af716c
yafm
author | Windel Bouwman |
---|---|
date | Tue, 03 Dec 2013 18:00:22 +0100 |
parents | 9417caea2eb3 |
children | 0615b5308710 |
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 |
300 | 8 arglist = ['memory.c3', 'kernel.c3', 'syscall.c3', 'process.c3', 'schedule.c3', 'arch_arm.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) |