将龙芯bsp并入loongson文件夹中

This commit is contained in:
Meco Man
2022-03-28 20:06:03 -04:00
parent 82a2fb169e
commit 8003788ad5
168 changed files with 3 additions and 3 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')