summaryrefslogtreecommitdiff
path: root/board/amcc/yucca/Makefile
diff options
context:
space:
mode:
authorWolfgang Denk <wd@pollux.denx.de>2006-06-30 19:32:25 +0200
committerWolfgang Denk <wd@pollux.denx.de>2006-06-30 19:32:25 +0200
commit3b5f61a02579026f0588b5dac3bb1c507b6fa53f (patch)
tree53c593882aee7938f94b0b3bdc0b6e50fdfe2ad6 /board/amcc/yucca/Makefile
parenta63c31cff5147f1eca19d884ee120005775fbffc (diff)
parentbba68377320608b3c3f7c0fef30452bdaa8b0408 (diff)
downloadu-boot-imx-3b5f61a02579026f0588b5dac3bb1c507b6fa53f.zip
u-boot-imx-3b5f61a02579026f0588b5dac3bb1c507b6fa53f.tar.gz
u-boot-imx-3b5f61a02579026f0588b5dac3bb1c507b6fa53f.tar.bz2
Merge with /home/m8/git/u-boot
Diffstat (limited to 'board/amcc/yucca/Makefile')
-rw-r--r--board/amcc/yucca/Makefile47
1 files changed, 47 insertions, 0 deletions
diff --git a/board/amcc/yucca/Makefile b/board/amcc/yucca/Makefile
new file mode 100644
index 0000000..c85fa31
--- /dev/null
+++ b/board/amcc/yucca/Makefile
@@ -0,0 +1,47 @@
+#
+# (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 = lib$(BOARD).a
+
+OBJS = $(BOARD).o flash.o cmd_yucca.o
+SOBJS = init.o
+
+$(LIB): $(OBJS) $(SOBJS)
+ $(AR) crv $@ $(OBJS)
+
+clean:
+ rm -f $(SOBJS) $(OBJS)
+
+distclean: clean
+ rm -f $(LIB) core *.bak .depend *~
+
+#########################################################################
+
+.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
+ $(CC) -M $(CFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
+
+sinclude .depend
+
+#########################################################################