summaryrefslogtreecommitdiff
path: root/examples/VFS/Makefile.in
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2002-09-07 04:05:42 +0000
committerSimo Sorce <idra@samba.org>2002-09-07 04:05:42 +0000
commit27cc26cec83f685c6d1dc73f855e01c082a09ca2 (patch)
tree8cc5b22fe49f8130bd22a3dae5ae7dfb8dd6a54f /examples/VFS/Makefile.in
parentdf4e6c9bcc2bb007e07c6f775e33f9174ea57931 (diff)
downloadsamba-27cc26cec83f685c6d1dc73f855e01c082a09ca2.tar.gz
samba-27cc26cec83f685c6d1dc73f855e01c082a09ca2.tar.bz2
samba-27cc26cec83f685c6d1dc73f855e01c082a09ca2.zip
recycle.c:
merged in modifications made my differnt people, cleaned up things, yet some work todo the code works but there are still some cases to be handled properly Makefile.in: this one seem much simpler and effective than the previous hack with file inclusion it should also be more portable we still need to find a solution to support multiple platforms or go back to libtool (This used to be commit e9f4bc77f84eeece82dea25f9c693cfb1d0a8464)
Diffstat (limited to 'examples/VFS/Makefile.in')
-rw-r--r--examples/VFS/Makefile.in10
1 files changed, 3 insertions, 7 deletions
diff --git a/examples/VFS/Makefile.in b/examples/VFS/Makefile.in
index 2ffd23b853..46e1a90263 100644
--- a/examples/VFS/Makefile.in
+++ b/examples/VFS/Makefile.in
@@ -6,11 +6,8 @@ LDSHFLAGS = -shared
srcdir = @builddir@
FLAGS = $(CFLAGS) -Iinclude -I$(srcdir)/include -I$(srcdir)/ubiqx -I$(srcdir)/smbwrapper -I. $(CPPFLAGS) -I$(srcdir)
-VFS_OBJS = audit.so recycle.so netatalk.so
-
-# Default target
-
-default: $(VFS_OBJS)
+# Auto target
+default: $(patsubst %.c,%.so,$(wildcard *.c))
# Pattern rules
@@ -24,5 +21,4 @@ default: $(VFS_OBJS)
clean:
rm -rf .libs
- rm -f core *~ *% *.bak \
- $(VFS_OBJ) $(VFS_OBJS)
+ rm -f core *~ *% *.bak *.o *.so