14 lines
184 B
Python
14 lines
184 B
Python
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
src = Split('''
|
||
|
board.c
|
||
|
startup_gcc.S
|
||
|
''')
|
||
|
|
||
|
path = [cwd]
|
||
|
|
||
|
group = DefineGroup('Drivers', src, depend=[''], CPPPATH=path)
|
||
|
Return('group')
|