You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
325 B
16 lines
325 B
10 months ago
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = Glob('*.S')
|
||
|
src += Glob('*.c')
|
||
|
path = [cwd]
|
||
|
|
||
|
if GetDepend(['CUS_DEMO_BOARD']):
|
||
|
src += Glob(cwd + '/cus_demo_board/fio_mux.c')
|
||
|
path += [cwd + '/cus_demo_board/']
|
||
|
|
||
|
group = DefineGroup('Board', src, depend=[
|
||
|
''], CPPPATH=path)
|
||
|
|
||
|
Return('group')
|