aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/multi/DAC/Makefile
blob: a5368aa98354422e17f1ca49d1b1404edb925089 (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
##############################################################################
# Multi-project makefile rules
#

all:
	@echo
	@echo === Building for STM32H743-Nucleo144 ===============================
	@make --no-print-directory -f ./make/stm32h743_nucleo144.make all
	@echo ====================================================================
	@echo
	@echo === Building for STM32L476-Discovery ===============================
	+@make --no-print-directory -f ./make/stm32l476_discovery.make all
	@echo ====================================================================
	@echo
	@echo === Building for STM32L4R5ZI-Nucleo144 =============================
	+@make --no-print-directory -f ./make/stm32l4r5zi_nucleo144.make all
	@echo ====================================================================
	@echo

clean:
	@echo
	-@make --no-print-directory -f ./make/stm32h743_nucleo144.make clean
	@echo
	+@make --no-print-directory -f ./make/stm32l476_discovery.make clean
	@echo
	+@make --no-print-directory -f ./make/stm32l4r5zi_nucleo144.make clean
	@echo

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