SConscript 224 字节
Newer Older
B
bernard.xiong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
Import('env')

src_local = Split("""
tc_comm.c
thread_static.c
thread_dynamic.c
thread_priority.c
""")

# The set of source files associated with this SConscript file.
obj = env.Object(src_local)

Return('obj')