aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/TIVA/multi/PAL/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'testhal/TIVA/multi/PAL/Makefile')
-rw-r--r--testhal/TIVA/multi/PAL/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/testhal/TIVA/multi/PAL/Makefile b/testhal/TIVA/multi/PAL/Makefile
new file mode 100644
index 0000000..a9ef661
--- /dev/null
+++ b/testhal/TIVA/multi/PAL/Makefile
@@ -0,0 +1,24 @@
+##############################################################################
+# Multi-project makefile rules
+#
+
+all:
+ @echo
+ @echo === Building for TM4C123G LaunchPad ================================
+ @make --no-print-directory -f ./make/tm4c123g_launchpad all
+ @echo ====================================================================
+ @echo
+ @echo === Building for TM4C1294 Connected LaunchPad ======================
+ @make --no-print-directory -f ./make/tm4c1294_launchpad all
+ @echo ====================================================================
+ @echo
+
+clean:
+ @echo
+ -@make --no-print-directory -f ./make/tm4c123g_launchpad clean
+ @echo
+ -@make --no-print-directory -f ./make/tm4c1294_launchpad clean
+ @echo
+
+#
+##############################################################################