31 lines
727 B
Python
31 lines
727 B
Python
from building import *
|
|
|
|
Import('rtconfig')
|
|
|
|
src = []
|
|
cwd = GetCurrentDir()
|
|
group = []
|
|
CPPPATH = [cwd]
|
|
|
|
if GetDepend('RT_USING_LIBC'):
|
|
src += Glob('*.c')
|
|
if GetDepend('RT_USING_POSIX') == False:
|
|
SrcRemove(src, ['unistd.c', 'delay.c'])
|
|
elif GetDepend('RT_LIBC_USING_TIME'):
|
|
src += ['time.c']
|
|
|
|
if rtconfig.CROSS_TOOL == 'keil':
|
|
CPPDEFINES = ['__CLK_TCK=RT_TICK_PER_SECOND']
|
|
else:
|
|
CPPDEFINES = []
|
|
|
|
group = DefineGroup('libc', src, depend = [], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
|
|
|
|
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'))
|
|
|
|
Return('group')
|