summaryrefslogtreecommitdiff
path: root/board/corscience/tricorder/Makefile
diff options
context:
space:
mode:
authorThomas Weber <weber@corscience.de>2012-01-28 09:25:46 +0000
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2012-02-12 10:11:23 +0100
commit8167af14d58b32fe50a9a3a1bdc44b45e101f93f (patch)
tree0413841648af2f97a1eabe00f5b13ed732678708 /board/corscience/tricorder/Makefile
parent0ae056510fa516893ce3cc6c61b4e914f028d9e0 (diff)
downloadu-boot-imx-8167af14d58b32fe50a9a3a1bdc44b45e101f93f.zip
u-boot-imx-8167af14d58b32fe50a9a3a1bdc44b45e101f93f.tar.gz
u-boot-imx-8167af14d58b32fe50a9a3a1bdc44b45e101f93f.tar.bz2
OMAP3: Add Corscience Tricorder board
Tricorder is a board which is very similar to the Devkit8000. It is designed as a base platform for further medical devices. www.corscience.de/en/medical-engineering/products/multiparameter/mp10-board.html Signed-off-by: Thomas Weber <weber@corscience.de>
Diffstat (limited to 'board/corscience/tricorder/Makefile')
-rw-r--r--board/corscience/tricorder/Makefile46
1 files changed, 46 insertions, 0 deletions
diff --git a/board/corscience/tricorder/Makefile b/board/corscience/tricorder/Makefile
new file mode 100644
index 0000000..16ef3a3
--- /dev/null
+++ b/board/corscience/tricorder/Makefile
@@ -0,0 +1,46 @@
+#
+# (C) Copyright 2000, 2001, 2002
+# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+#
+# (C) Copyright 2012
+# Thomas Weber <weber@corscience.de>
+#
+# See file CREDITS for list of people who contributed to this
+# project.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+# MA 02111-1307 USA
+#
+
+include $(TOPDIR)/config.mk
+
+LIB = $(obj)lib$(BOARD).o
+
+COBJS := tricorder.o
+
+SRCS := $(COBJS:.o=.c)
+OBJS := $(addprefix $(obj),$(COBJS))
+
+$(LIB): $(obj).depend $(OBJS)
+ $(call cmd_link_o_target, $(OBJS))
+
+#########################################################################
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################