diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-04-22 15:30:42 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:51:20 -0500 |
commit | 2bef5d2741807fe3f38a95710533520700e253a4 (patch) | |
tree | c52a3e8f614ffd0849e3c256455760d9d683fb66 /source/Makefile.in | |
parent | 91296a6003417e8704114ea63511c2c9201da122 (diff) | |
download | samba-2bef5d2741807fe3f38a95710533520700e253a4.tar.gz samba-2bef5d2741807fe3f38a95710533520700e253a4.tar.xz samba-2bef5d2741807fe3f38a95710533520700e253a4.zip |
r329: add the shadow_copy vfs module
I'll add documentation to the Samba-Howto-Collection
metze
Diffstat (limited to 'source/Makefile.in')
-rw-r--r-- | source/Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/Makefile.in b/source/Makefile.in index de7ee10bb40..2203af089bc 100644 --- a/source/Makefile.in +++ b/source/Makefile.in @@ -320,6 +320,7 @@ VFS_DEFAULT_QUOTA_OBJ = modules/vfs_default_quota.o VFS_READONLY_OBJ = modules/vfs_readonly.o modules/getdate.o VFS_CAP_OBJ = modules/vfs_cap.o VFS_EXPAND_MSDFS_OBJ = modules/vfs_expand_msdfs.o +VFS_SHADOW_COPY_OBJ = modules/vfs_shadow_copy.o PLAINTEXT_AUTH_OBJ = auth/pampass.o auth/pass_check.o @@ -1169,6 +1170,11 @@ bin/readonly.@SHLIBEXT@: $(VFS_READONLY_OBJ:.o=.@PICSUFFIX@) @$(SHLD) $(LDSHFLAGS) -o $@ $(VFS_READONLY_OBJ:.o=.@PICSUFFIX@) \ @SONAMEFLAG@`basename $@` +bin/shadow_copy.@SHLIBEXT@: $(VFS_SHADOW_COPY_OBJ:.o=.@PICSUFFIX@) + @echo "Building plugin $@" + @$(SHLD) $(LDSHFLAGS) -o $@ $(VFS_SHADOW_COPY_OBJ:.o=.@PICSUFFIX@) \ + @SONAMEFLAG@`basename $@` + bin/cap.@SHLIBEXT@: $(VFS_CAP_OBJ:.o=.@PICSUFFIX@) @echo "Building plugin $@" @$(SHLD) $(LDSHFLAGS) -o $@ $(VFS_CAP_OBJ:.o=.@PICSUFFIX@) \ |