31 lines
627 B
Python
Executable File
31 lines
627 B
Python
Executable File
import os
|
|
from building import *
|
|
|
|
group = []
|
|
|
|
if not GetDepend(['RT_USING_PIN']):
|
|
Return('group')
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd + '/../include']
|
|
|
|
src = ['dev_pin.c']
|
|
|
|
if GetDepend(['RT_USING_DM']):
|
|
src += ['dev_pin_dm.c']
|
|
|
|
if GetDepend(['RT_USING_OFW']):
|
|
src += ['dev_pin_ofw.c']
|
|
|
|
if GetDepend(['RT_PIN_PL061']):
|
|
src += ['pin-pl061.c']
|
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
list = os.listdir(cwd)
|
|
for item in list:
|
|
if os.path.isfile(os.path.join(cwd, item, 'SConscript')):
|
|
group = group + SConscript(os.path.join(item, 'SConscript'))
|
|
|
|
Return('group')
|