Files

16 lines
314 B
Python
Raw Permalink Normal View History

2025-09-30 11:56:06 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
if GetDepend('AIC_STRIP_MODE'):
src = []
else:
src = Glob('*.c') + Glob("*.S")
cwd = GetCurrentDir()
CPPPATH = [cwd + '/../include/', ]
group = DefineGroup('aic_debug', src, depend = [''], CPPPATH = CPPPATH)
Return('group')