aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/multi/TRNG/Makefile
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2018-10-07 06:41:06 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2018-10-07 06:41:06 +0000
commit644898df5f9771ad9308ed9abd7dee165a4b1268 (patch)
tree6641b5323cfb1a1a3c6e40c000b6230ff13a4149 /testhal/STM32/multi/TRNG/Makefile
parent191a9c5ac61e0e65a01cdac84378b888b8d17448 (diff)
downloadChibiOS-644898df5f9771ad9308ed9abd7dee165a4b1268.tar.gz
ChibiOS-644898df5f9771ad9308ed9abd7dee165a4b1268.tar.bz2
ChibiOS-644898df5f9771ad9308ed9abd7dee165a4b1268.zip
TRNG test application, just template.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12341 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'testhal/STM32/multi/TRNG/Makefile')
-rw-r--r--testhal/STM32/multi/TRNG/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/testhal/STM32/multi/TRNG/Makefile b/testhal/STM32/multi/TRNG/Makefile
new file mode 100644
index 000000000..8fed918b3
--- /dev/null
+++ b/testhal/STM32/multi/TRNG/Makefile
@@ -0,0 +1,18 @@
+##############################################################################
+# Multi-project makefile rules
+#
+
+all:
+ @echo
+ @echo === Building for STM32L476-Discovery ===============================
+ +@make --no-print-directory -f ./make/stm32l476_discovery.make all
+ @echo ====================================================================
+ @echo
+
+clean:
+ @echo
+ +@make --no-print-directory -f ./make/stm32l476_discovery.make clean
+ @echo
+
+#
+##############################################################################