mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 23:59:32 +08:00
1e5518ee84
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1148 bbd45198-f89e-11dd-88c7-29a3b14d5316
16 lines
332 B
Python
16 lines
332 B
Python
import rtconfig
|
|
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
src_bsp = ['application.c', 'startup.c', 'board.c']
|
|
src_drv = []
|
|
|
|
|
|
|
|
src = src_bsp + src_drv
|
|
CPPPATH = [RTT_ROOT + '/bsp/lpc2148']
|
|
CPPDEFINES = []
|
|
group = DefineGroup('Startup', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
|
|
|
|
Return('group')
|