summaryrefslogtreecommitdiffstats
path: root/examples/VFS/Makefile
diff options
context:
space:
mode:
authorcvs2svn Import User <samba-bugs@samba.org>2000-03-19 08:08:18 +0000
committercvs2svn Import User <samba-bugs@samba.org>2000-03-19 08:08:18 +0000
commitdf33eecde47e550d2773b7720c854ef6bc88c33f (patch)
tree9db4094fe7e1a647f15cdff0961c4c5ddecadb42 /examples/VFS/Makefile
parentb4158702c97d47479bbfd6550d44bdc0cc1ea6ca (diff)
downloadsamba-misc-tags/tng/release-alpha-1-1.tar.gz
samba-misc-tags/tng/release-alpha-1-1.tar.xz
samba-misc-tags/tng/release-alpha-1-1.zip
This commit was manufactured by cvs2svn to create tagsamba-misc-tags/tng/release-alpha-1-1
'release-alpha-1-1'.
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