Files
codezero/tasks/libmem/tests/SConscript
Bahadir Balban e2b791a3d8 Initial commit
2008-01-13 13:53:52 +00:00

10 lines
288 B
Python

# Inherit global environment
Import('env')
# The set of source files associated with this SConscript file.
src_local = ['main.c', 'test_kmalloc.c', 'test_memcache.c', 'test_allocpage.c', 'test_alloc_generic.c', 'debug.c', 'memory.c', 'clz.c']
obj = env.Object(src_local)
Return('obj')