blob: 1dbf0181dacac44ecca4632eba7caa8dd6e07e41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
#
##############################################################################
|