aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/AVR/multi/PAL/Makefile
blob: 2d54e41c1368ca23fdd8e90e6a0e686a29ff097a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
##############################################################################
# Multi-project makefile rules
#

all:
	@echo
	@echo === Building for Arduino-Mega ======================================
	@make --no-print-directory -f make/Makefile-arduino_mega.make all
	@echo ====================================================================
	@echo
	@echo === Building for Arduino-Mini ======================================
	@make --no-print-directory -f make/Makefile-arduino_mini.make all
	@echo ====================================================================
	@echo
	@echo === Building for Arduino-Nano ======================================
	@make --no-print-directory -f make/Makefile-arduino_nano.make all
	@echo ====================================================================
	@echo
	@echo === Building for Arduino-Uno =======================================
	@make --no-print-directory -f make/Makefile-arduino_uno.make all
	@echo ====================================================================
	@echo

clean:
	@echo
	-@make --no-print-directory -f make/Makefile-arduino_mega.make clean
	@echo
	-@make --no-print-directory -f make/Makefile-arduino_mini.make clean
	@echo
	-@make --no-print-directory -f make/Makefile-arduino_nano.make clean
	@echo
	-@make --no-print-directory -f make/Makefile-arduino_uno.make clean
	@echo

#
##############################################################################