doublecheck.sh 761 B

12345678910111213141516171819202122232425
  1. #!/bin/sh
  2. # ====================================================================
  3. # Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. # All Rights Reserved.
  5. # Qualcomm Atheros Confidential and Proprietary.
  6. # --------------------------------------------------------------------
  7. #PROJECTS=VisualStudioNET
  8. FOLDERS="classes ether key mdio mme nda nodes nvm pib plc programs ram serial tools slac qca"
  9. CATALOG1=solution.txt
  10. CATALOG2=programs.txt
  11. CATALOG=catalog.txt
  12. # ====================================================================
  13. # compile all programs stand-alone to verify include statements;
  14. # --------------------------------------------------------------------
  15. for folder in ${FOLDERS}; do
  16. echo ${folder}
  17. cd ${folder}
  18. bash ${folder}.sh
  19. cd ..
  20. done