rename frdm-k64f

This commit is contained in:
geniusgogo
2014-07-02 21:23:42 +08:00
parent a16a512ebd
commit 6b7637f3b4
75 changed files with 0 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# for module compiling
import os
Import('RTT_ROOT')
cwd = str(Dir('#'))
objs = []
list = os.listdir(cwd)
for d in list:
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
objs = objs + SConscript(os.path.join(d, 'SConscript'))
Return('objs')