mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-21 05:23:35 +08:00
14 lines
235 B
Python
14 lines
235 B
Python
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
group = []
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
if GetDepend('BSP_USING_GMAC'):
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|