aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/AVR/multi/PAL/Makefile
blob: 8e4fbfe87caa26d98e49d16202f9e66f6c185717 (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 Makefile-arduino_mega all
	@echo ====================================================================
	@echo
	@echo === Building for Arduino-Mini ======================================
	@make --no-print-directory -f Makefile-arduino_mini all
	@echo ====================================================================
	@echo
	@echo === Building for Arduino-Nano ======================================
	@make --no-print-directory -f Makefile-arduino_nano all
	@echo ====================================================================
	@echo
	@echo === Building for Arduino-Uno =======================================
	@make --no-print-directory -f Makefile-arduino_uno all
	@echo ====================================================================
	@echo

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

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