diff options
author | Simo Sorce <idra@samba.org> | 2002-09-06 13:37:40 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2002-09-06 13:37:40 +0000 |
commit | d383c309d4a259fb28d7541777a8b3b53cca23bf (patch) | |
tree | f38d3d78cf5c1b145fc4f8f62ee54b81ddc14930 /examples/VFS | |
parent | d1e1fc3e4bf72717b3593685f0ea5750d676952a (diff) | |
download | samba-d383c309d4a259fb28d7541777a8b3b53cca23bf.tar.gz samba-d383c309d4a259fb28d7541777a8b3b53cca23bf.tar.xz samba-d383c309d4a259fb28d7541777a8b3b53cca23bf.zip |
move everything to flat VFS/ directory
Diffstat (limited to 'examples/VFS')
-rw-r--r-- | examples/VFS/Makefile.in | 2 | ||||
-rw-r--r-- | examples/VFS/README.netatalk (renamed from examples/VFS/netatalk/README) | 0 | ||||
-rw-r--r-- | examples/VFS/netatalk.c (renamed from examples/VFS/netatalk/netatalk.c) | 0 | ||||
-rw-r--r-- | examples/VFS/netatalk/Makefile.in | 28 |
4 files changed, 1 insertions, 29 deletions
diff --git a/examples/VFS/Makefile.in b/examples/VFS/Makefile.in index 6ae4f49434d..2ffd23b8538 100644 --- a/examples/VFS/Makefile.in +++ b/examples/VFS/Makefile.in @@ -6,7 +6,7 @@ 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 +VFS_OBJS = audit.so recycle.so netatalk.so # Default target diff --git a/examples/VFS/netatalk/README b/examples/VFS/README.netatalk index 70f6eea316d..70f6eea316d 100644 --- a/examples/VFS/netatalk/README +++ b/examples/VFS/README.netatalk diff --git a/examples/VFS/netatalk/netatalk.c b/examples/VFS/netatalk.c index 353be36e6f0..353be36e6f0 100644 --- a/examples/VFS/netatalk/netatalk.c +++ b/examples/VFS/netatalk.c diff --git a/examples/VFS/netatalk/Makefile.in b/examples/VFS/netatalk/Makefile.in deleted file mode 100644 index a9a5d69b51e..00000000000 --- a/examples/VFS/netatalk/Makefile.in +++ /dev/null @@ -1,28 +0,0 @@ -CC = @CC@ -CFLAGS = @CFLAGS@ -CPPFLAGS = @CPPFLAGS@ -LDFLAGS = @LDFLAGS@ -LDSHFLAGS = -shared -srcdir = @builddir@ -FLAGS = $(CFLAGS) -Iinclude -I$(srcdir)/include -I$(srcdir)/ubiqx -I$(srcdir)/smbwrapper -I. $(CPPFLAGS) -I$(srcdir) - -VFS_OBJS = netatalk.so - -# Default target - -default: $(VFS_OBJS) - -# Pattern rules - -%.so: %.o - $(CC) $(LDSHFLAGS) $(LDFLAGS) -o $@ $< - -%.o: %.c - $(CC) $(FLAGS) -c $< - -# Misc targets - -clean: - rm -rf .libs - rm -f core *~ *% *.bak \ - $(VFS_OBJ) $(VFS_OBJS) |