SConscript 508 B

12345678910111213141516171819202122
  1. import os
  2. from building import *
  3. objs = []
  4. cwd = GetCurrentDir()
  5. if GetDepend(['SOC_SERIES_MA35D1']):
  6. objs = objs + SConscript('MA35D1/SConscript')
  7. if GetDepend(['SOC_SERIES_M460']):
  8. objs = objs + SConscript('M460/SConscript')
  9. if GetDepend(['SOC_SERIES_M480']):
  10. objs = objs + SConscript('M480/SConscript')
  11. if GetDepend(['SOC_SERIES_M032']):
  12. objs = objs + SConscript('M031/SConscript')
  13. if GetDepend(['SOC_SERIES_M2354']):
  14. objs = objs + SConscript('M2354/SConscript')
  15. Return('objs')