New makefiles.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11124 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2017-12-06 19:09:07 +00:00
parent 3a3232c736
commit 9c88ee7eb1
3 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
##############################################################################
# Multi-project makefile rules
#
all:
@echo
@echo === Building with GHS ==============================================
+@make --no-print-directory -f Makefile-ghs all
@echo ====================================================================
@echo
@echo === Building with HighTec ==========================================
+@make --no-print-directory -f Makefile-ht all
@echo ====================================================================
@echo
clean:
@echo
+@make --no-print-directory -f Makefile-ghs clean
@echo
+@make --no-print-directory -f Makefile-ht clean
@echo
#
##############################################################################