From 6d5e35312696c14b685d7ce7977aa359eec74043 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Sun, 4 Jun 2000 17:15:47 +0000 Subject: [PATCH] Fixed clean target (didn't delete all .o files) svn path=/trunk/; revision=1172 --- reactos/drivers/fs/vfat/makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/reactos/drivers/fs/vfat/makefile b/reactos/drivers/fs/vfat/makefile index 41dfdd28d17..6ab9bc4fa60 100644 --- a/reactos/drivers/fs/vfat/makefile +++ b/reactos/drivers/fs/vfat/makefile @@ -1,4 +1,4 @@ -# $Id: makefile,v 1.14 2000/01/19 07:05:04 rex Exp $ +# $Id: makefile,v 1.15 2000/06/04 17:15:47 ekohl Exp $ # # TARGET=vfatfs @@ -14,10 +14,7 @@ all: $(TARGET).sys clean: ifeq ($(DOSCLI),yes) - - $(RM) blockdev.o - - $(RM) dir.o - - $(RM) dirwr.o - - $(RM) iface.o + - $(RM) *.o - $(RM) $(TARGET).coff - $(RM) junk.tmp - $(RM) base.tmp