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')
|
|
|
|
|
2009-10-20 17:18:45 +08:00
|
|
|
env.Append(CPPPATH = RTT_ROOT + '/finsh')
|
|
|
|
|
2009-10-14 17:47:48 +08:00
|
|
|
obj = env.Object(src_local)
|
|
|
|
Return('obj')
|