19 lines
482 B
Python
Raw Normal View History

2024-08-05 20:57:09 +08:00
from building import *
cwd = GetCurrentDir()
2025-03-14 11:04:51 +08:00
CPPPATH = [cwd, cwd + '/../include']
2024-08-05 20:57:09 +08:00
src = Glob('*.c')
2025-03-14 11:04:51 +08:00
if GetDepend('RT_USING_OFW') == False:
SrcRemove(src, ['ofw.c'])
if GetDepend('RT_USING_PHY_V2') == False:
SrcRemove(src, ['general.c','mdio.c','ofw.c'])
if GetDepend('RT_USING_PHY_V2') == False:
if GetDepend('RT_USING_PHY') == False:
SrcRemove(src, ['phy.c'])
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
2024-08-05 20:57:09 +08:00
Return('group')