You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
674 B
25 lines
674 B
import rtconfig
|
|
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
# get current directory
|
|
cwd = GetCurrentDir()
|
|
|
|
# The set of source files associated with this SConscript file.
|
|
src = Split("""
|
|
Nuvoton/M480/Source/system_M480.c
|
|
""")
|
|
|
|
# add for startup script
|
|
if rtconfig.PLATFORM in ['gcc']:
|
|
src = src + ['Nuvoton/M480/Source/GCC/startup_M480.S']
|
|
elif rtconfig.PLATFORM in ['armcc', 'armclang']:
|
|
src = src + ['Nuvoton/M480/Source/ARM/startup_M480.s']
|
|
elif rtconfig.PLATFORM in ['iccarm']:
|
|
src = src + ['Nuvoton/M480/Source/IAR/startup_M480.s']
|
|
|
|
path = [cwd + '/Nuvoton/M480/Include',]
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
|
|
|
|
Return('group')
|
|
|