Files
codezero/src/api/SConscript

11 lines
264 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', 'space.c', 'mutex.c', 'capability.c']
obj = env.Object(src_local)
Return('obj')