SConscript 155 B

12345678
  1. Import('env')
  2. src_local = Glob('*.c')
  3. # The set of source files associated with this SConscript file.
  4. obj = env.Object(src_local)
  5. Return('obj')