summaryrefslogtreecommitdiffstats
path: root/board/cerf250/Makefile
diff options
context:
space:
mode:
authorwdenk <wdenk>2004-07-10 23:11:10 +0000
committerwdenk <wdenk>2004-07-10 23:11:10 +0000
commitfabd46acff08edd9f945340338caa07bb0534e64 (patch)
tree1e7c65a900dfd446023b5522e162b56d18ed87b6 /board/cerf250/Makefile
parent10a36a98c40f06980ba80ef1ec966c5c0e216238 (diff)
downloadblackbird-obmc-uboot-fabd46acff08edd9f945340338caa07bb0534e64.tar.gz
blackbird-obmc-uboot-fabd46acff08edd9f945340338caa07bb0534e64.zip
* Patch by Prakash Kumar, 27 Jun 2004:
Add support for the PXA250 based Intrinsyc Cerf board. * Patch by Yasushi Shoji, 27 Jun 2004: fix comment in include/common.h
Diffstat (limited to 'board/cerf250/Makefile')
-rw-r--r--board/cerf250/Makefile47
1 files changed, 47 insertions, 0 deletions
diff --git a/board/cerf250/Makefile b/board/cerf250/Makefile
new file mode 100644
index 0000000000..3ab97dfdc0
--- /dev/null
+++ b/board/cerf250/Makefile
@@ -0,0 +1,47 @@
+#
+# (C) Copyright 2000
+# 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 = lib$(BOARD).a
+
+OBJS := cerf250.o flash.o
+SOBJS := memsetup.o
+
+$(LIB): $(OBJS) $(SOBJS)
+ $(AR) crv $@ $(OBJS) $(SOBJS)
+
+clean:
+ rm -f $(SOBJS) $(OBJS)
+
+distclean: clean
+ rm -f $(LIB) core *.bak .depend
+
+#########################################################################
+
+.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
+ $(CC) -M $(CPPFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
+
+-include .depend
+
+#########################################################################
OpenPOWER on IntegriCloud