summaryrefslogtreecommitdiff
path: root/board/m501sk/Makefile
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2011-08-26 02:25:47 +0000
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2011-09-04 11:36:15 +0200
commitb1a2bd4bb3c23e48d60c4352b1c62037fd11435f (patch)
tree68607a8d6d99378ccd703befbce3f33a9869e8bb /board/m501sk/Makefile
parent5bd3814bb7abe1372c812c1628a753f8d60ec918 (diff)
downloadu-boot-imx-b1a2bd4bb3c23e48d60c4352b1c62037fd11435f.zip
u-boot-imx-b1a2bd4bb3c23e48d60c4352b1c62037fd11435f.tar.gz
u-boot-imx-b1a2bd4bb3c23e48d60c4352b1c62037fd11435f.tar.bz2
ARM: remove broken "m501sk" board
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/m501sk/Makefile')
-rw-r--r--board/m501sk/Makefile50
1 files changed, 0 insertions, 50 deletions
diff --git a/board/m501sk/Makefile b/board/m501sk/Makefile
deleted file mode 100644
index 439e99f..0000000
--- a/board/m501sk/Makefile
+++ /dev/null
@@ -1,50 +0,0 @@
-#
-# (C) Copyright 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 = $(obj)lib$(BOARD).o
-
-COBJS := m501sk.o eeprom.o
-
-SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
-OBJS := $(addprefix $(obj),$(COBJS))
-SOBJS := $(addprefix $(obj),$(SOBJS))
-
-$(LIB): $(OBJS) $(SOBJS)
- $(call cmd_link_o_target, $(OBJS) $(SOBJS))
-
-clean:
- rm -f $(SOBJS) $(OBJS)
-
-distclean: clean
- rm -f $(LIB) core *.bak $(obj).depend
-
-#########################################################################
-
-# defines $(obj).depend target
-include $(SRCTREE)/rules.mk
-
-sinclude $(obj).depend
-
-#########################################################################