summaryrefslogtreecommitdiffstats
path: root/examples/VFS/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/VFS/Makefile')
-rw-r--r--examples/VFS/Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/examples/VFS/Makefile b/examples/VFS/Makefile
deleted file mode 100644
index c4c9479c7d3..00000000000
--- a/examples/VFS/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-#
-# Makefile for samba-vfs examples
-#
-# $Id: Makefile,v 1.2 2000/02/04 05:08:16 tpot Exp $
-#
-
-# Variables
-
-CC = gcc
-LIBTOOL = libtool
-
-SAMBA_SRC = ../../source/include
-CFLAGS = -I$(SAMBA_SRC)
-VFS_OBJS = audit.so skel.so
-
-# Default target
-
-default: $(VFS_OBJS)
-
-# Pattern rules
-
-%.so: %.lo
- $(LIBTOOL) $(CC) -shared -o $@ $< $(LDFLAGS)
-
-%.lo: %.c
- $(LIBTOOL) $(CC) $(CPPFLAGS) $(CFLAGS) -c $<
-
-# Misc targets
-
-clean:
- rm -rf .libs
- rm -f core $(VFS_OBJS) $(VFS_OBJS:.so=.lo) *~ *% *.bak