mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 19:03:15 +01:00
11 lines
273 B
Python
11 lines
273 B
Python
# Inherit global environment
|
|
Import('env')
|
|
Import('symbols')
|
|
|
|
# The set of source files associated with this SConscript file.
|
|
src_local = ['printk.c', 'putc.c', 'string.c', 'bit.c', 'wait.c', 'mutex.c', 'idpool.c', 'memcache.c']
|
|
|
|
obj = env.Object(src_local)
|
|
|
|
Return('obj')
|