SConscript 314 B

1234567891011121314151617
  1. Import('env')
  2. src_local = Split("""
  3. tc_comm.c
  4. thread_static.c
  5. thread_dynamic.c
  6. thread_priority.c
  7. thread_same_priority.c
  8. thread_static_simple.c
  9. thread_dynamic_simple.c
  10. thread_delete.c
  11. """)
  12. # The set of source files associated with this SConscript file.
  13. obj = env.Object(src_local)
  14. Return('obj')