mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-25 21:48:54 +00:00
27 lines
622 B
Python
27 lines
622 B
Python
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
list = os.listdir(cwd)
|
|
|
|
include_path =[]
|
|
src = []
|
|
|
|
include_path +=[cwd + '/fw']
|
|
include_path +=[cwd + '/macif']
|
|
include_path +=[cwd + '/aicbt_bsp']
|
|
include_path +=[cwd + '/layer_abstract/inc']
|
|
include_path +=[cwd + '/layer_common/inc']
|
|
|
|
src += Glob('fw/*.c')
|
|
src += Glob('macif/*.c')
|
|
src += Glob('aicbt_bsp/*.c')
|
|
src += Glob('layer_abstract/src/*.c')
|
|
src += Glob('layer_common/src/*.c')
|
|
|
|
myccflags = (' -w')
|
|
|
|
group = DefineGroup('aic8800', src, depend = ['AIC_WLAN_AIC8800D40L'], CPPPATH = include_path, LOCAL_CFLAGS=myccflags)
|
|
|
|
Return('group')
|