23 lines
575 B
Python
23 lines
575 B
Python
|
from building import *
|
||
|
import os
|
||
|
|
||
|
group = []
|
||
|
cwd = GetCurrentDir()
|
||
|
src = Glob('*.c')
|
||
|
|
||
|
CPPPATH = [cwd]
|
||
|
LOCAL_CFLAGS = ''
|
||
|
|
||
|
if rtconfig.PLATFORM in ['gcc', 'armclang']:
|
||
|
LOCAL_CFLAGS += ' -std=c99'
|
||
|
elif rtconfig.PLATFORM in ['armcc']:
|
||
|
LOCAL_CFLAGS += ' --c99'
|
||
|
|
||
|
list = os.listdir(cwd)
|
||
|
for d in list:
|
||
|
path = os.path.join(cwd, d)
|
||
|
if os.path.isfile(os.path.join(path, 'SConscript')):
|
||
|
group = group + SConscript(os.path.join(d, 'SConscript'))
|
||
|
|
||
|
group = group + DefineGroup('avi', src, depend = [], CPPPATH = CPPPATH, LOCAL_CFLAGS = LOCAL_CFLAGS)
|
||
|
Return('group')
|