diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2014-03-16 14:31:22 +0200 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2014-03-16 14:31:22 +0200 |
| commit | ac4fd8e8340886f455add8cf92ee1c8458b8ae19 (patch) | |
| tree | fdeb96af9d57573855405fb5099468244772cd49 /boards/Makefile | |
| parent | 821e3405f23958760f7c27e8934940abfed3d5cb (diff) | |
Add ek-tm4c1294xl example projects
Diffstat (limited to 'boards/Makefile')
| -rw-r--r-- | boards/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/boards/Makefile b/boards/Makefile new file mode 100644 index 0000000..efcde5d --- /dev/null +++ b/boards/Makefile @@ -0,0 +1,44 @@ +#******************************************************************************
+#
+# Makefile - Rules for building the board specific examples.
+#
+# Copyright (c) 2007-2014 Texas Instruments Incorporated. All rights reserved.
+# Software License Agreement
+#
+# Texas Instruments (TI) is supplying this software for use solely and
+# exclusively on TI's microcontroller products. The software is owned by
+# TI and/or its suppliers, and is protected under applicable copyright
+# laws. You may not combine this software with "viral" open-source
+# software in order to form a larger program.
+#
+# THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS.
+# NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT
+# NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY
+# CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
+# DAMAGES, FOR ANY REASON WHATSOEVER.
+#
+# This is part of revision 2.1.0.12573 of the Tiva Firmware Development Package.
+#
+#******************************************************************************
+
+DIRS=${wildcard *}
+
+all:
+ @for i in ${DIRS}; \
+ do \
+ if [ -f $${i}/Makefile ]; \
+ then \
+ make -C $${i} || exit $$?; \
+ fi; \
+ done
+
+clean:
+ @for i in ${DIRS}; \
+ do \
+ if [ -f $${i}/Makefile ]; \
+ then \
+ make -C $${i} clean; \
+ fi; \
+ done
+ @rm -f ${wildcard *~} __dummy__
|
