mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-17 06:53:31 +08:00
15 lines
207 B
Python
15 lines
207 B
Python
|
# 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')
|
||
|
|
||
|
|