summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2000-04-05 22:44:33 +0000
committerTim Potter <tpot@samba.org>2000-04-05 22:44:33 +0000
commit503e11d45535012a2ff28916afa160b41f16759a (patch)
tree26469a9a25945f7ff87fb953f4747162b52420ab
parente4da88b71c79de06cf673da015ba8f3da2088e57 (diff)
downloadsamba-503e11d45535012a2ff28916afa160b41f16759a.tar.gz
Improved clean target.
-rw-r--r--examples/VFS/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/VFS/Makefile b/examples/VFS/Makefile
index f6aa92b3145..f2cf82cce2b 100644
--- a/examples/VFS/Makefile
+++ b/examples/VFS/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for samba-vfs examples
#
-# $Id: Makefile,v 1.2.2.1 2000/04/05 22:20:34 tpot Exp $
+# $Id: Makefile,v 1.2.2.2 2000/04/05 22:44:33 tpot Exp $
#
# Variables
@@ -29,4 +29,5 @@ default: $(VFS_OBJS)
clean:
rm -rf .libs
- rm -f core $(VFS_OBJS) $(VFS_OBJS:.so=.lo) *~ *% *.bak
+ rm -f core *~ *% *.bak \
+ $(VFS_OBJS) $(VFS_OBJS:.so=.o) $(VFS_OBJS:.so=.lo)