summaryrefslogtreecommitdiffstats
path: root/fs/fat/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-09-21 14:02:08 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-09-21 14:02:08 +0200
commit9a365ade16d8f489d223a6c960fa494d8012422b (patch)
tree2242afdaf9a602f442c912d236fce4ddb7b5b94d /fs/fat/Makefile
parenta83669c197bb27684ed66cd1bfeafb2e5c4a6ccc (diff)
downloadbarebox-9a365ade16d8f489d223a6c960fa494d8012422b.tar.gz
barebox-9a365ade16d8f489d223a6c960fa494d8012422b.tar.xz
remove uncompilable filesystems
Diffstat (limited to 'fs/fat/Makefile')
-rw-r--r--fs/fat/Makefile45
1 files changed, 0 insertions, 45 deletions
diff --git a/fs/fat/Makefile b/fs/fat/Makefile
deleted file mode 100644
index 87af73b7eb..0000000000
--- a/fs/fat/Makefile
+++ /dev/null
@@ -1,45 +0,0 @@
-#
-#
-# 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)libfat.a
-
-AOBJS =
-COBJS = fat.o file.o
-
-SRCS := $(AOBJS:.o=.S) $(COBJS:.o=.c)
-OBJS := $(addprefix $(obj),$(AOBJS) $(COBJS))
-
-all: $(LIB) $(AOBJS)
-
-$(LIB): $(obj).depend $(OBJS)
- $(AR) $(ARFLAGS) $@ $(OBJS)
-
-
-#########################################################################
-
-# defines $(obj).depend target
-include $(SRCTREE)/rules.mk
-
-sinclude $(obj).depend
-
-#########################################################################