SConscript 739 字节
Newer Older
B
bernard.xiong 已提交
1 2 3 4 5 6 7
Import('env')

src_local = Split("""
tc_comm.c
thread_static.c
thread_dynamic.c
thread_priority.c
B
bernard.xiong 已提交
8 9 10 11
thread_same_priority.c
thread_static_simple.c
thread_dynamic_simple.c
thread_delete.c
12 13 14 15
thread_detach.c
thread_yield.c
thread_suspend.c
thread_resume.c
B
bernard.xiong 已提交
16 17 18 19
semaphore_static.c
semaphore_dynamic.c
semaphore_priority.c
semaphore_buffer_worker.c
20 21
semaphore_producer_consumer.c
mutex_simple.c
22 23 24
event_simple.c
mbox_simple.c
messageq_simple.c
B
bernard.xiong 已提交
25 26 27 28
timer_static.c
timer_dynamic.c
timer_stop_self.c
timer_control.c
B
bernard.xiong 已提交
29
timer_timeout.c
B
bernard.xiong 已提交
30 31
heap_malloc.c
heap_realloc.c
32
memp_simple.c
B
bernard.xiong 已提交
33 34 35 36
""")

# The set of source files associated with this SConscript file.
obj = env.Object(src_local)
B
bernard.xiong 已提交
37
env.Append(CPPDEFINES='RT_USING_TC')
B
bernard.xiong 已提交
38 39

Return('obj')