| 12345678910111213141516171819202122 |
- import os
- from building import *
- objs = []
- cwd = GetCurrentDir()
- if GetDepend(['SOC_SERIES_MA35D1']):
- objs = objs + SConscript('MA35D1/SConscript')
- if GetDepend(['SOC_SERIES_M460']):
- objs = objs + SConscript('M460/SConscript')
- if GetDepend(['SOC_SERIES_M480']):
- objs = objs + SConscript('M480/SConscript')
- if GetDepend(['SOC_SERIES_M032']):
- objs = objs + SConscript('M031/SConscript')
- if GetDepend(['SOC_SERIES_M2354']):
- objs = objs + SConscript('M2354/SConscript')
- Return('objs')
|