mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-17 07:33:32 +08:00
14 lines
253 B
Python
14 lines
253 B
Python
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
|
|
if rtconfig.PLATFORM == 'gcc':
|
|
src += Glob('*_gcc.S')
|
|
|
|
group = DefineGroup('libcpu', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|