1Import('RTT_ROOT') 2Import('rtconfig') 3from building import * 4 5cwd = GetCurrentDir() 6src = Glob('*.c') 7 8path = [cwd] 9 10group = DefineGroup('drivers', src, depend = [''], CPPPATH = path) 11 12Return('group')