4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-27 18:10:24 +08:00

14 lines
235 B
Python
Raw Normal View History

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')