SConscript 224 B

12345678910111213
  1. Import('env')
  2. src_local = Split("""
  3. tc_comm.c
  4. thread_static.c
  5. thread_dynamic.c
  6. thread_priority.c
  7. """)
  8. # The set of source files associated with this SConscript file.
  9. obj = env.Object(src_local)
  10. Return('obj')