2020-09-11 10:11:25 +08:00
|
|
|
Import('RTT_ROOT')
|
|
|
|
Import('rtconfig')
|
|
|
|
from building import *
|
|
|
|
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = Glob('*.c')
|
|
|
|
CPPPATH = GetCurrentDir()
|
|
|
|
|
2021-12-22 11:03:03 +08:00
|
|
|
CFLAGS = ' -c -ffunction-sections'
|
2020-09-11 10:11:25 +08:00
|
|
|
|
2021-12-22 11:03:03 +08:00
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH, CFLAGS=CFLAGS)
|
2020-09-11 10:11:25 +08:00
|
|
|
|
|
|
|
Return('group')
|