summaryrefslogtreecommitdiff
path: root/examples/VFS/Makefile
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-09-09 03:56:39 +0000
committerGerald Carter <jerry@samba.org>2003-09-09 03:56:39 +0000
commit3d7cb49747a9a7f5cdec0ee05c6270ec3604202f (patch)
tree1adf69fe14a97784fdeb2d0438ba48b8fc05e324 /examples/VFS/Makefile
parent1a15f2ee0b3da27ada20493798148a26d09346b9 (diff)
downloadsamba-3d7cb49747a9a7f5cdec0ee05c6270ec3604202f.tar.gz
samba-3d7cb49747a9a7f5cdec0ee05c6270ec3604202f.tar.bz2
samba-3d7cb49747a9a7f5cdec0ee05c6270ec3604202f.zip
syncing files
(This used to be commit c74c2903fb8bd38f8469b3c3b549ac8a431f36dd)
Diffstat (limited to 'examples/VFS/Makefile')
-rw-r--r--examples/VFS/Makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/examples/VFS/Makefile b/examples/VFS/Makefile
deleted file mode 100644
index ac5a93b49b..0000000000
--- a/examples/VFS/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-CFLAGS =
-CPPFLAGS =
-LDFLAGS =
-LDSHFLAGS = -shared
-srcdir = ../../source/
-FLAGS = $(CFLAGS) -Iinclude -I$(srcdir)/include -I$(srcdir)/ubiqx -I$(srcdir)/smbwrapper -I. $(CPPFLAGS) -I$(srcdir)
-
-# Auto target
-default: $(patsubst %.c,%.so,$(wildcard *.c))
-
-# Pattern rules
-
-%.so: %.o
- $(CC) $(LDSHFLAGS) $(LDFLAGS) -o $@ $<
-
-%.o: %.c
- $(CC) $(FLAGS) -c $<
-
-# Misc targets
-
-clean:
- rm -rf .libs
- rm -f core *~ *% *.bak *.o *.so