4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-17 06:53:31 +08:00

15 lines
207 B
Python
Raw Normal View History

2018-03-04 08:21:19 +08:00
# for module compiling
import os
Import('rtconfig')
from building import *
objs = []
cwd = GetCurrentDir()
list = os.listdir(cwd)
objs += SConscript(os.path.join('drv', 'SConscript'))
Return('objs')