summaryrefslogtreecommitdiffstats
path: root/board/amcc/makalu/Makefile
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2007-10-22 07:34:34 +0200
committerStefan Roese <sr@denx.de>2007-10-31 21:20:50 +0100
commit211ea91ac6c225bec7e668a03d0ba7d7310679fa (patch)
treec594fa51a74ab994ef3ac21a982d9dcd05955f18 /board/amcc/makalu/Makefile
parentfa8aea20456e6f1dba43f46bcc72024dd9499998 (diff)
downloadblackbird-obmc-uboot-211ea91ac6c225bec7e668a03d0ba7d7310679fa.tar.gz
blackbird-obmc-uboot-211ea91ac6c225bec7e668a03d0ba7d7310679fa.zip
ppc4xx: Add initial AMCC Makalu 405EX support
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/amcc/makalu/Makefile')
-rw-r--r--board/amcc/makalu/Makefile50
1 files changed, 50 insertions, 0 deletions
diff --git a/board/amcc/makalu/Makefile b/board/amcc/makalu/Makefile
new file mode 100644
index 0000000000..b8da25ff42
--- /dev/null
+++ b/board/amcc/makalu/Makefile
@@ -0,0 +1,50 @@
+#
+# (C) Copyright 2007
+# Stefan Roese, DENX Software Engineering, sr@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 = $(BOARD).o cmd_pll.o memory.o
+SOBJS = init.o
+
+SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
+OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
+
+$(LIB): $(obj).depend $(OBJS)
+ $(AR) $(ARFLAGS) $@ $(OBJS)
+
+clean:
+ rm -f $(OBJS)
+
+distclean: clean
+ rm -f $(LIB) core *.bak .depend *~
+
+#########################################################################
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################
OpenPOWER on IntegriCloud