2010-12-15 19:03:26 +08:00
|
|
|
Import('env')
|
2011-01-01 22:31:29 +08:00
|
|
|
Import('projects')
|
2010-12-15 19:03:26 +08:00
|
|
|
Import('RTT_ROOT')
|
|
|
|
Import('rtconfig')
|
|
|
|
Import('TARGET')
|
|
|
|
|
|
|
|
RTMLINKER = RTT_ROOT + '/tools/rtmlinker.exe '
|
|
|
|
|
|
|
|
# group definitions
|
2011-01-01 22:31:29 +08:00
|
|
|
group = {}
|
|
|
|
group['CCFLAGS'] = ''
|
|
|
|
group['CPPPATH'] = [RTT_ROOT + '/include',
|
2010-12-15 19:03:26 +08:00
|
|
|
RTT_ROOT + '/examples/module',
|
|
|
|
RTT_ROOT + '/components/external/ftk/ftk/src/os/rt-thread',
|
2011-01-01 22:31:29 +08:00
|
|
|
RTT_ROOT + '/components/external/ftk/ftk/src/demos',
|
|
|
|
RTT_ROOT + '/components/external/ftk/ftk/apps/common',
|
2010-12-15 19:03:26 +08:00
|
|
|
RTT_ROOT + '/components/external/ftk/ftk/src',
|
|
|
|
RTT_ROOT + '/components/dfs',
|
|
|
|
RTT_ROOT + '/components/dfs/include',
|
|
|
|
RTT_ROOT + '/components/libc/newlib']
|
2011-01-01 22:31:29 +08:00
|
|
|
group['CPPDEFINES'] = ''
|
2010-12-15 19:03:26 +08:00
|
|
|
|
2011-01-01 22:31:29 +08:00
|
|
|
target = 'libftk_demos.so'
|
|
|
|
POST_ACTION = RTMLINKER + ' -l ' + TARGET + ' -o libftk_demos.mo ' + '$TARGET'
|
2010-12-15 19:03:26 +08:00
|
|
|
|
2011-01-01 22:31:29 +08:00
|
|
|
# add group to project list
|
|
|
|
projects.append(group)
|
2010-12-15 19:03:26 +08:00
|
|
|
|
2011-01-01 22:31:29 +08:00
|
|
|
src_local = Glob('*.c')
|
2010-12-15 19:03:26 +08:00
|
|
|
|
2011-01-01 22:31:29 +08:00
|
|
|
env.Append(CCFLAGS = group['CCFLAGS'])
|
|
|
|
env.Append(CPPPATH = group['CPPPATH'])
|
|
|
|
env.Append(CPPDEFINES = group['CPPDEFINES'])
|
|
|
|
module_env = env.Clone(CCFLAGS = ' -DRT_THREAD -DFTK_AS_PLUGIN -mcpu=arm920t -O0 -fPIC')
|
|
|
|
module_env.Replace(LINKFLAGS = '-z max-page-size=0x4 -shared -fPIC -e 0 -nostdlib -s')
|
|
|
|
module_env.Program(target, src_local)
|
|
|
|
module_env.AddPostAction(target, POST_ACTION)
|