summaryrefslogtreecommitdiff
path: root/board/adderII/Makefile
diff options
context:
space:
mode:
authorwdenk <wdenk>2004-07-09 22:51:01 +0000
committerwdenk <wdenk>2004-07-09 22:51:01 +0000
commit262381329b87511ed862cde139a3a1ff49e9d7eb (patch)
tree151ad67387361c92cf4fd64c6b4779d7c00d43a7 /board/adderII/Makefile
parentede130229ca069afbb38ce396a912c2b2f1d8263 (diff)
* Patch by Yuli Barcohen, 16 Jun 2004:
Remove obsolete AdderII port which was superseded by unified AdderII/Adder87x port * Patch by Ladislav Michl, 16 Jun 2004: Fix gcc-3.3.3 warnings for smc91111.c
Diffstat (limited to 'board/adderII/Makefile')
-rw-r--r--board/adderII/Makefile40
1 files changed, 0 insertions, 40 deletions
diff --git a/board/adderII/Makefile b/board/adderII/Makefile
deleted file mode 100644
index e5d84463133..00000000000
--- a/board/adderII/Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# (C) Copyright 2000-2003
-# 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
-
-$(LIB): .depend $(OBJS)
- $(AR) crv $@ $(OBJS)
-
-#########################################################################
-
-.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
- $(CC) -M $(CFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
-
-sinclude .depend
-
-#########################################################################