1from building import *
2
3cwd     = GetCurrentDir()
4CPPPATH = [cwd]
5
6src     = ['core.c', 'early.c']
7
8if GetDepend(['RT_SERIAL_8250']):
9    src += ['8250-dw.c']
10    src += ['fiq-debugger.c']
11
12group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
13Return('group')
14