mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-06-24 00:21:05 +08:00
cleanup scons building script
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1065 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
+5
-20
@@ -1,23 +1,8 @@
|
||||
Import('env')
|
||||
Import('RTT_ROOT')
|
||||
Import('projects')
|
||||
from building import *
|
||||
|
||||
# The set of source files associated with this SConscript file.
|
||||
src_local = Glob('*.c')
|
||||
src = Glob('*.c')
|
||||
CPPPATH = [RTT_ROOT + '/include']
|
||||
group = DefineGroup('Kernel', src, depend = [''], CPPPATH = CPPPATH)
|
||||
|
||||
# group definitions
|
||||
group = {}
|
||||
group['name'] = 'Kernel'
|
||||
group['src'] = File(src_local)
|
||||
group['CCFLAGS'] = ''
|
||||
group['CPPPATH'] = [RTT_ROOT + '/include']
|
||||
group['CPPDEFINES'] = ''
|
||||
group['LINKFLAGS'] = ''
|
||||
|
||||
# add group to project list
|
||||
projects.append(group)
|
||||
|
||||
env.Append(CPPPATH = group['CPPPATH'])
|
||||
obj = env.Object(group['src'])
|
||||
|
||||
Return('obj')
|
||||
Return('group')
|
||||
|
||||
Reference in New Issue
Block a user