SConscript 747 B

12345678910111213141516171819202122232425262728293031
  1. import os
  2. from building import *
  3. objs = []
  4. cwd = GetCurrentDir()
  5. if GetDepend(['SOC_MCXA346']):
  6. objs = objs + SConscript('MCXA346/SConscript')
  7. if GetDepend(['SOC_MCXA344']):
  8. objs = objs + SConscript('MCXA344/SConscript')
  9. if GetDepend(['SOC_MCXA156']):
  10. objs = objs + SConscript('MCXA156/SConscript')
  11. if GetDepend(['SOC_MCXA153']):
  12. objs = objs + SConscript('MCXA153/SConscript')
  13. if GetDepend(['SOC_MCXC444']):
  14. objs = objs + SConscript('MCXC444/SConscript')
  15. if GetDepend(['SOC_MCXE247']):
  16. objs = objs + SConscript('MCXE247/SConscript')
  17. if GetDepend(['SOC_MCXN236']):
  18. objs = objs + SConscript('MCXN236/SConscript')
  19. if GetDepend(['SOC_MCXN947']):
  20. objs = objs + SConscript('MCXN947/SConscript')
  21. Return('objs')