add bsp lpc54102

This commit is contained in:
Coing
2014-12-16 19:54:29 +08:00
parent 82ef447e44
commit e4fdb84e96
164 changed files with 48650 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from building import *
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')