add project support for at91sam9260, add support for at91sam9g45

This commit is contained in:
zhuhongbing
2018-12-26 12:50:52 +08:00
parent fefbea7b7e
commit fb693418ee
50 changed files with 18478 additions and 254 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')