18 lines
402 B
Python
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')
|