2017-08-08 11:56:50 +08:00
|
|
|
# RT-Thread building script for bridge
|
|
|
|
|
|
|
|
import os
|
|
|
|
from building import *
|
|
|
|
|
2017-11-01 10:39:02 +08:00
|
|
|
Import('rtconfig')
|
|
|
|
|
|
|
|
cwd = GetCurrentDir()
|
2017-08-08 11:56:50 +08:00
|
|
|
objs = []
|
|
|
|
list = os.listdir(cwd)
|
|
|
|
|
2017-11-01 10:39:02 +08:00
|
|
|
objs = objs + SConscript(os.path.join('drivers', 'SConscript'))
|
|
|
|
objs = objs + SConscript(os.path.join('utilities', 'SConscript'))
|
|
|
|
|
|
|
|
if rtconfig.CROSS_TOOL == 'gcc':
|
|
|
|
objs = objs + SConscript(os.path.join('mcuxpresso', 'SConscript'))
|
|
|
|
elif rtconfig.CROSS_TOOL == 'keil':
|
|
|
|
objs = objs + SConscript(os.path.join('arm', 'SConscript'))
|
|
|
|
elif rtconfig.CROSS_TOOL == 'iar':
|
|
|
|
objs = objs + SConscript(os.path.join('iar', 'SConscript'))
|
|
|
|
|
|
|
|
src = Glob('*.c')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
CPPDEFINES = ['CORE_M4', 'CPU_LPC54608', 'CPU_LPC54608J512ET180=1']
|
|
|
|
|
|
|
|
group = DefineGroup('CMSIS', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
|
|
|
|
|
|
|
|
objs = objs + group
|
2017-08-08 11:56:50 +08:00
|
|
|
|
|
|
|
Return('objs')
|