SConscript 354 B

123456789101112131415
  1. from building import *
  2. import rtconfig
  3. # get current directory
  4. cwd = GetCurrentDir()
  5. # The set of source files associated with this SConscript file.
  6. src = Glob('*.c')
  7. path = [cwd + '/']
  8. LOCAL_CCFLAGS = ''
  9. group = DefineGroup('coremark', src, depend = ['PKG_USING_COREMARK'], CPPPATH = path, LOCAL_CCFLAGS = LOCAL_CCFLAGS)
  10. Return('group')