1Import('RTT_ROOT')
2Import('rtconfig')
3from building import *
4
5cwd     = GetCurrentDir()
6
7# add the general drivers.
8src     = Glob("*.c") + Glob("*.cpp") + Glob("*.S")
9
10CPPPATH = [cwd]
11group   = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
12
13Return('group')
14