1Import('RTT_ROOT')
2Import('rtconfig')
3from building import *
4
5cwd = GetCurrentDir()
6src = Glob('*.c')
7CPPPATH = [cwd]
8
9#remove other no use files
10#SrcRemove(src, '*.c')
11
12group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
13
14Return('group')
15