mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
15 lines
318 B
Python
15 lines
318 B
Python
Import('PRJ_KERNEL')
|
|
from building import *
|
|
|
|
CPPPATH = []
|
|
src = []
|
|
if GetDepend('LPKG_USING_BONNIE') and GetDepend('RT_USING_FINSH'):
|
|
src = Glob('*.c')
|
|
|
|
LOCAL_CCFLAGS = ''
|
|
#LOCAL_CCFLAGS += '-DNO_FORK'
|
|
|
|
group = DefineGroup('bonnie', src, depend=[''], CPPPATH=CPPPATH, LOCAL_CCFLAGS=LOCAL_CCFLAGS)
|
|
|
|
Return('group')
|