4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 17:03:32 +08:00

16 lines
319 B
Python

from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
if not GetDepend('BSP_DRV_EMAC'):
SrcRemove(src, ['drv_smc911x.c'])
if not GetDepend('BSP_DRV_CLCD'):
SrcRemove(src, ['drv_clcd.c'])
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')