2009-10-14 17:47:48 +08:00
|
|
|
Import('env')
|
2009-10-22 07:50:25 +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-22 07:50:25 +08:00
|
|
|
env.Append(CPPPATH = [RTT_ROOT + '/include'])
|
2009-10-14 17:47:48 +08:00
|
|
|
obj = env.Object(src_local)
|
2009-10-22 07:50:25 +08:00
|
|
|
|
2009-10-14 17:47:48 +08:00
|
|
|
Return('obj')
|