summaryrefslogtreecommitdiff
path: root/board/keymile/kmeter1/Makefile
diff options
context:
space:
mode:
authorHeiko Schocher <hs@denx.de>2008-11-20 09:57:47 +0100
committerWolfgang Denk <wd@denx.de>2009-01-24 00:36:19 +0100
commitde0443614af4d16675ab436665aeb11ddc9f7214 (patch)
treedb162cd8571521e9668c1f990db607d5b2e6d2a7 /board/keymile/kmeter1/Makefile
parent3feb647f3fd0881382c7a29f4cf280b66473ae0a (diff)
downloadu-boot-imx-de0443614af4d16675ab436665aeb11ddc9f7214.zip
u-boot-imx-de0443614af4d16675ab436665aeb11ddc9f7214.tar.gz
u-boot-imx-de0443614af4d16675ab436665aeb11ddc9f7214.tar.bz2
powerpc: 83xx: add support for the kmeter1 board
This patch adds support for the kmeter1 board from Keymile, based on a Freescale MPC8360 CPU. - serial console on UART 1 - 256 MB DDR2 RAM - 64 MB NOR Flash - Ethernet RMII Mode over UCC4 - PHY SMSC LAN8700 Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'board/keymile/kmeter1/Makefile')
-rw-r--r--board/keymile/kmeter1/Makefile51
1 files changed, 51 insertions, 0 deletions
diff --git a/board/keymile/kmeter1/Makefile b/board/keymile/kmeter1/Makefile
new file mode 100644
index 0000000..88b79f3
--- /dev/null
+++ b/board/keymile/kmeter1/Makefile
@@ -0,0 +1,51 @@
+#
+# (C) Copyright 2006
+# Wolfgang Denk, DENX Software Engineering, wd@denx.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).a
+
+COBJS-y += $(BOARD).o
+
+COBJS := $(COBJS-y)
+SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
+OBJS := $(addprefix $(obj),$(COBJS))
+SOBJS := $(addprefix $(obj),$(SOBJS))
+
+$(LIB): $(obj).depend $(OBJS)
+ $(AR) $(ARFLAGS) $@ $(OBJS)
+
+clean:
+ rm -f $(SOBJS) $(OBJS)
+
+distclean: clean
+ rm -f $(LIB) core *.bak $(obj).depend
+
+#########################################################################
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################