2009-10-14 17:47:48 +08:00
|
|
|
Import('env')
|
2009-10-20 17:18:45 +08:00
|
|
|
Import('RTT_ROOT')
|
2009-10-14 17:47:48 +08:00
|
|
|
|
|
|
|
# The set of source files associated with this SConscript file.
|
|
|
|
src_local = Glob('*.c')
|
|
|
|
|
2010-04-26 18:29:55 +08:00
|
|
|
env.Append(CPPPATH = RTT_ROOT + '/components/libc/minilibc', CPPDEFINES='RT_USING_MINILIBC')
|
2009-10-20 17:18:45 +08:00
|
|
|
|
2009-10-14 17:47:48 +08:00
|
|
|
obj = env.Object(src_local)
|
|
|
|
Return('obj')
|