mirror of
https://github.com/flyingcys/realtek_ameba.git
synced 2025-07-31 20:31:06 +00:00
add realtek_ameba package
This commit is contained in:
commit
d401464b75
3406 changed files with 1112851 additions and 0 deletions
15
sdk-ameba-v4.0b_without_NDA_GCC_V1.0.0/component/SConscript
Normal file
15
sdk-ameba-v4.0b_without_NDA_GCC_V1.0.0/component/SConscript
Normal file
|
@ -0,0 +1,15 @@
|
|||
# RT-Thread building script for bridge
|
||||
|
||||
import os
|
||||
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')
|
Loading…
Add table
Add a link
Reference in a new issue