mirror of
https://github.com/drasko/codezero.git
synced 2026-02-27 01:03:14 +01:00
11 lines
267 B
Python
11 lines
267 B
Python
# Inherit global environment
|
|
Import('env')
|
|
Import('symbols')
|
|
|
|
# The set of source files associated with this SConscript file.
|
|
src_local = ['kip.c', 'syscall.c', 'thread.c', 'ipc.c', 'map.c', 'mutex.c', 'cap.c', 'exregs.c']
|
|
|
|
obj = env.Object(src_local)
|
|
|
|
Return('obj')
|