rm48x50: add GCC support

This commit is contained in:
Grissiom
2013-10-20 18:51:45 +08:00
parent 2f4329430d
commit 9568669109
15 changed files with 835 additions and 16 deletions
+12
View File
@@ -0,0 +1,12 @@
from building import *
cwd = GetCurrentDir()
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')