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.
20 lines
411 B
20 lines
411 B
5 months ago
|
from building import *
|
||
|
import rtconfig
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src_c = Glob('*.c')
|
||
|
|
||
|
# add for startup script
|
||
|
if rtconfig.PLATFORM in ['gcc']:
|
||
|
src_asm = ['start_gcc.S', 'vectors_gcc.S', 'interrupts_gcc.S']
|
||
|
elif rtconfig.PLATFORM in ['iccarm']:
|
||
|
src_asm = ['cstartup.asm']
|
||
|
|
||
|
src = File(src_c + src_asm)
|
||
|
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|