aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/multi/SPI/Makefile
blob: 099c7ccc534cc1c2bf9e86bb47a82f06964c49f5 (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
37
38
39
40
41
42
##############################################################################
# Multi-project makefile rules
#

all:
	@echo
	@echo === Building for STM32F091-Nucleo64 ================================
	@make --no-print-directory -f ./make/stm32f091_nucleo64.make all
	@echo ====================================================================
	@echo
	@echo === Building for STM32F303-Discovery ===============================
	@make --no-print-directory -f ./make/stm32f303_discovery.make all
	@echo ====================================================================
	@echo
	@echo === Building for STM32F407-Discovery ===============================
	@make --no-print-directory -f ./make/stm32f407_discovery.make all
	@echo ====================================================================
	@echo
	@echo === Building for STM32H743-Nucleo144 ===============================
	@make --no-print-directory -f ./make/stm32h743_nucleo144.make all
	@echo ====================================================================
	@echo
	@echo === Building for STM32L4R5-Nucleo144 ===============================
	@make --no-print-directory -f ./make/stm32l4r5_nucleo144.make all
	@echo ====================================================================
	@echo

clean:
	@echo
	-@make --no-print-directory -f ./make/stm32f091_nucleo64.make clean
	@echo
	-@make --no-print-directory -f ./make/stm32f303_discovery.make clean
	@echo
	-@make --no-print-directory -f ./make/stm32f407_discovery.make clean
	@echo
	-@make --no-print-directory -f ./make/stm32h743_nucleo144.make clean
	@echo
	-@make --no-print-directory -f ./make/stm32l4r5_nucleo144.make clean
	@echo

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