summaryrefslogtreecommitdiffstats
path: root/board/assabet/Makefile
diff options
context:
space:
mode:
authorwdenk <wdenk>2004-04-15 23:23:39 +0000
committerwdenk <wdenk>2004-04-15 23:23:39 +0000
commitea66bc8804b66633faae5b7066571c9d68b4d14a (patch)
treee5b4c3c3d36b0b27c4f3850f6efb56528966e77c /board/assabet/Makefile
parentdb01a2ea991b539ffbd36ab952fcf2e754789a83 (diff)
downloadblackbird-obmc-uboot-ea66bc8804b66633faae5b7066571c9d68b4d14a.tar.gz
blackbird-obmc-uboot-ea66bc8804b66633faae5b7066571c9d68b4d14a.zip
* Patch by George G. Davis, 02 Apr 2004:
add support for Intel Assabet board
Diffstat (limited to 'board/assabet/Makefile')
-rw-r--r--board/assabet/Makefile49
1 files changed, 49 insertions, 0 deletions
diff --git a/board/assabet/Makefile b/board/assabet/Makefile
new file mode 100644
index 0000000000..c49f1b4604
--- /dev/null
+++ b/board/assabet/Makefile
@@ -0,0 +1,49 @@
+#
+# (C) Copyright 2000-2004
+# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+#
+# 2004 (c) MontaVista Software, Inc.
+#
+# 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 := assabet.o
+SOBJS := setup.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