Import beaglebone porting

This commit is contained in:
bernard
2013-09-20 21:20:51 +08:00
parent 0bf7ed76cf
commit 9d09cd9f23
27 changed files with 3160 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')