mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 18:13:32 +08:00
16 lines
265 B
Python
16 lines
265 B
Python
import copy
|
|
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
|
|
ASFLAGS = ' -I' + cwd
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH, ASFLAGS = ASFLAGS)
|
|
|
|
Return('group')
|