SConscript 211 字节
Newer Older
B
bernard.xiong 已提交
1 2
Import('env')

B
bernard.xiong 已提交
3
target = 'hello.mo'
B
bernard.xiong 已提交
4

B
bernard.xiong 已提交
5 6
module_env = env.Clone(CPPDEFINE = 'RT_MODULE')
module_env.Replace(LINKFLAGS = ' -r -d -e rtm_main -nostdlib')
B
bernard.xiong 已提交
7

B
bernard.xiong 已提交
8
src_local = Glob('*.c')
B
bernard.xiong 已提交
9

B
bernard.xiong 已提交
10
module_env.Program(target, src_local)