summaryrefslogtreecommitdiff
path: root/board/BuS/vl_ma2sc/Makefile
diff options
context:
space:
mode:
authoresw@bus-elektronik.de <esw@bus-elektronik.de>2012-01-16 00:22:02 +0000
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2012-07-07 14:07:44 +0200
commit4324c75fccf1e87a58b216300e396dc1eb55a5f6 (patch)
treeb76fa08799afc76008ee5015bde545a522aebfc2 /board/BuS/vl_ma2sc/Makefile
parent185b3b76a6a2e4eacb9e74a633950231e6787384 (diff)
downloadu-boot-imx-4324c75fccf1e87a58b216300e396dc1eb55a5f6.zip
u-boot-imx-4324c75fccf1e87a58b216300e396dc1eb55a5f6.tar.gz
u-boot-imx-4324c75fccf1e87a58b216300e396dc1eb55a5f6.tar.bz2
add new board vl_ma2sc
* add support for board VL+MA2SC * adds vl_ma2sc_config for standard NOR boot configuration * adds vl_ma2sc_ram_config for RAM load configuration Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
Diffstat (limited to 'board/BuS/vl_ma2sc/Makefile')
-rw-r--r--board/BuS/vl_ma2sc/Makefile48
1 files changed, 48 insertions, 0 deletions
diff --git a/board/BuS/vl_ma2sc/Makefile b/board/BuS/vl_ma2sc/Makefile
new file mode 100644
index 0000000..1cadfb3
--- /dev/null
+++ b/board/BuS/vl_ma2sc/Makefile
@@ -0,0 +1,48 @@
+#
+# (C) Copyright 2003-2008
+# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+#
+# (C) Copyright 2009-2012
+# Jens Scharsig <esw@bus-elekronik.de>
+# BuS Elektronik GmbH & Co. KG
+#
+# 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 += vl_ma2sc.o
+
+SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
+OBJS := $(addprefix $(obj),$(COBJS))
+SOBJS := $(addprefix $(obj),$(SOBJS))
+
+$(LIB): $(obj).depend $(OBJS) $(SOBJS)
+ $(call cmd_link_o_target, $(OBJS) $(SOBJS))
+
+#########################################################################
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################