rt-thread/bsp/imx6sx/cortex-a9/cpu/SConscript

18 lines
381 B
Python
Raw Normal View History

2015-08-09 09:36:12 +08:00
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S')
elif rtconfig.PLATFORM == 'gcc':
src += Glob('*_gcc.S')
elif rtconfig.PLATFORM == 'armcc':
src += Glob('*_rvds.S')
2020-12-19 16:49:11 +08:00
group = DefineGroup('CPU', src, depend = [''], CPPPATH = CPPPATH)
2015-08-09 09:36:12 +08:00
Return('group')