1
0

SConscript 153 B

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