Files
codezero/src/api/SConscript
2009-10-24 18:44:47 +03:00

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')