4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 03:33:33 +08:00

22 lines
413 B
Python

from building import *
Import('rtconfig')
src = []
cwd = GetCurrentDir()
group = []
CPPPATH = [cwd]
if GetDepend('RT_USING_LIBC'):
src += Glob('*.c')
else:
if GetDepend('RT_LIBC_USING_TIME'):
src += ['time.c']
if GetDepend('RT_USING_POSIX') == False:
SrcRemove(src, ['unistd.c'])
group = DefineGroup('libc', src, depend = [''], CPPPATH = CPPPATH)
Return('group')