11 lines
205 B
Python
11 lines
205 B
Python
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = Glob('*.c') + Glob('iomux/*.c')
|
||
|
|
||
|
CPPPATH = [cwd, cwd + '/iomux']
|
||
|
|
||
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|