Mercurial > lcfOS
annotate kernel/make.py @ 297:a6f61e9a9d5c
Added docs requirements
author | Windel Bouwman |
---|---|
date | Sun, 01 Dec 2013 17:35:54 +0100 |
parents | 9417caea2eb3 |
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) |