22 lines
430 B
Python
Executable File
22 lines
430 B
Python
Executable File
from building import *
|
|
|
|
group = []
|
|
|
|
if not GetDepend(['RT_USING_REGULATOR']):
|
|
Return('group')
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd + '/../include']
|
|
|
|
src = ['regulator.c', 'regulator_dm.c']
|
|
|
|
if GetDepend(['RT_REGULATOR_FIXED']):
|
|
src += ['regulator-fixed.c']
|
|
|
|
if GetDepend(['RT_REGULATOR_GPIO']):
|
|
src += ['regulator-gpio.c']
|
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|