2023-01-08 22:52:13 -05:00

18 lines
402 B
Python

Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
if rtconfig.PLATFORM in ['iccarm']:
src += Glob('*_iar.S')
elif rtconfig.PLATFORM in ['gcc']:
src += Glob('*_gcc.S')
elif rtconfig.PLATFORM in ['armcc', 'armclang']:
src += Glob('*_rvds.S')
group = DefineGroup('CPU', src, depend = [''], CPPPATH = CPPPATH)
Return('group')