aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/multi/UART/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'testhal/STM32/multi/UART/Makefile')
-rw-r--r--testhal/STM32/multi/UART/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/testhal/STM32/multi/UART/Makefile b/testhal/STM32/multi/UART/Makefile
new file mode 100644
index 000000000..697e2528e
--- /dev/null
+++ b/testhal/STM32/multi/UART/Makefile
@@ -0,0 +1,36 @@
+##############################################################################
+# Multi-project makefile rules
+#
+
+all:
+ @echo
+ @echo === Building for STM32F091-Nucleo64 ================================
+ @make --no-print-directory -f Makefile-stm32f091_nucleo64 all
+ @echo ====================================================================
+ @echo
+ @echo === Building for STM32F303-Discovery ===============================
+ @make --no-print-directory -f Makefile-stm32f303_discovery all
+ @echo ====================================================================
+ @echo
+ @echo === Building for STM32F407-Discovery ===============================
+ @make --no-print-directory -f Makefile-stm32f407_discovery all
+ @echo ====================================================================
+ @echo
+ @echo === Building for STM32F746-Discovery ===============================
+ @make --no-print-directory -f Makefile-stm32f746_discovery all
+ @echo ====================================================================
+ @echo
+
+clean:
+ @echo
+ -@make --no-print-directory -f Makefile-stm32f091_nucleo64 clean
+ @echo
+ -@make --no-print-directory -f Makefile-stm32f303_discovery clean
+ @echo
+ -@make --no-print-directory -f Makefile-stm32f407_discovery clean
+ @echo
+ -@make --no-print-directory -f Makefile-stm32f746_discovery clean
+ @echo
+
+#
+##############################################################################