19 lines
289 B
Python
19 lines
289 B
Python
# RT-Thread building script for component
|
|
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Split('''
|
|
board.c
|
|
pin_mux.c
|
|
clock_config.c
|
|
fsl_host.c
|
|
interrupt.c
|
|
trap_gcc.S
|
|
''')
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|