3c246ff153
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@98 bbd45198-f89e-11dd-88c7-29a3b14d5316
8 lines
153 B
Python
8 lines
153 B
Python
Import('env')
|
|
|
|
# The set of source files associated with this SConscript file.
|
|
src_local = Glob('*.c')
|
|
|
|
obj = env.Object(src_local)
|
|
Return('obj')
|