rt-thread/libcpu/arc/em/SConscript

16 lines
258 B
Python
Raw Normal View History

# RT-Thread building script for component
from building import *
Import('rtconfig')
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
src += Glob('*.S')
2020-11-20 13:38:11 +08:00
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH)
Return('group')