summaryrefslogtreecommitdiffstats
path: root/lib_microblaze/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-09-21 09:11:56 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-09-21 09:11:56 +0200
commit2723a41e089a29bd89ce5d9201fd31a755dd2778 (patch)
treee2cdb553f211faba683330c1a66df4ad0c738a62 /lib_microblaze/Makefile
parent591b88e631240d180398b86a363af1bbe72ddfdd (diff)
downloadbarebox-2723a41e089a29bd89ce5d9201fd31a755dd2778.tar.gz
barebox-2723a41e089a29bd89ce5d9201fd31a755dd2778.tar.xz
remove old microblaze support
Diffstat (limited to 'lib_microblaze/Makefile')
-rw-r--r--lib_microblaze/Makefile45
1 files changed, 0 insertions, 45 deletions
diff --git a/lib_microblaze/Makefile b/lib_microblaze/Makefile
deleted file mode 100644
index 82b7beadb0..0000000000
--- a/lib_microblaze/Makefile
+++ /dev/null
@@ -1,45 +0,0 @@
-#
-# (C) Copyright 2003-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 = $(obj)lib$(ARCH).a
-
-SOBJS =
-
-COBJS = board.o microblaze_linux.o time.o cache.o
-
-SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
-OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
-
-$(LIB): $(obj).depend $(OBJS)
- $(AR) $(ARFLAGS) $@ $(OBJS)
-
-#########################################################################
-
-# defines $(obj).depend target
-include $(SRCTREE)/rules.mk
-
-sinclude $(obj).depend
-
-#########################################################################