Makefile 751 B

1234567891011121314151617181920212223
  1. ##############################################################################
  2. # Multi-project makefile rules
  3. #
  4. all:
  5. @echo
  6. @echo === Building with GHS ==============================================
  7. +@make --no-print-directory -f Makefile-ghs all
  8. @echo ====================================================================
  9. @echo
  10. @echo === Building with HighTec ==========================================
  11. +@make --no-print-directory -f Makefile-ht all
  12. @echo ====================================================================
  13. @echo
  14. clean:
  15. @echo
  16. +@make --no-print-directory -f Makefile-ghs clean
  17. @echo
  18. +@make --no-print-directory -f Makefile-ht clean
  19. @echo
  20. #
  21. ##############################################################################