diff options
author | marcoveeneman <marco-veeneman@hotmail.com> | 2018-03-02 00:11:46 +0100 |
---|---|---|
committer | marcoveeneman <marco-veeneman@hotmail.com> | 2018-03-02 00:11:46 +0100 |
commit | e7478cb78dcb59a526f88d8b8a8759eb688919dd (patch) | |
tree | de0e2e5fabea8dc2438b1e32a0df0ccb06c0c1c1 /testhal/TIVA/multi/PAL/Makefile | |
parent | 2977a2bc8792f800b4b41f1649d596aec6894461 (diff) | |
download | ChibiOS-Contrib-e7478cb78dcb59a526f88d8b8a8759eb688919dd.tar.gz ChibiOS-Contrib-e7478cb78dcb59a526f88d8b8a8759eb688919dd.tar.bz2 ChibiOS-Contrib-e7478cb78dcb59a526f88d8b8a8759eb688919dd.zip |
Added multi target testhal application for PAL driver.
Diffstat (limited to 'testhal/TIVA/multi/PAL/Makefile')
-rw-r--r-- | testhal/TIVA/multi/PAL/Makefile | 24 |
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..9efbf47 --- /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 Makefile-tm4c123g_launchpad all + @echo ==================================================================== + @echo + @echo === Building for TM4C1294 Connected LaunchPad ====================== + @make --no-print-directory -f Makefile-tm4c1294_launchpad all + @echo ==================================================================== + @echo + +clean: + @echo + -@make --no-print-directory -f Makefile-tm4c123g_launchpad clean + @echo + -@make --no-print-directory -f Makefile-tm4c1294_launchpad clean + @echo + +# +############################################################################## |