Files
codezero/src/generic/SConscript

11 lines
270 B
Python

# Inherit global environment
Import('env')
# The set of source files associated with this SConscript file.
src_local = ['physmem.c', 'irq.c', 'scheduler.c', 'time.c', 'tcb.c', 'pgalloc.c', 'kmalloc.c', 'space.c', 'bootm.c']
obj = env.Object(src_local)
Return('obj')