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