1from building import * 2 3cwd = GetCurrentDir() 4src = Glob('*.c') 5CPPPATH = [cwd] 6group = DefineGroup('Utilities', src, depend = ['RT_USING_RYM'], CPPPATH = CPPPATH) 7 8Return('group') 9