rt-thread/libcpu/aarch64/cortex-a53/SConscript

16 lines
274 B
Python
Raw Normal View History

2020-01-10 10:38:21 +08:00
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
asm_src = Split('''
context_gcc.S
vector_gcc.S
entry_point.S
cpu_gcc.S
''')
CPPPATH = [cwd]
group = DefineGroup('cpu', src + asm_src, depend = [''], CPPPATH = CPPPATH)
Return('group')