From ca259c596845ef9375b4c1fec36b9c6d6dafa8a4 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 30 Jun 2011 13:54:52 +0200 Subject: [PATCH 1/2] s3:build: add a vfs_examples target. --- source3/Makefile.in | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/source3/Makefile.in b/source3/Makefile.in index ff05d02..99342ef 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -3542,3 +3542,14 @@ bin/smbtorture4: $(BINARY_PREREQS) bin/ndrdump4: $(BINARY_PREREQS) $(MAKE) -f Makefile-smbtorture4 bin/ndrdump4 + +.PHONY: vfs_examples + +vfs_examples: + ( \ + cd ../examples/VFS && \ + ./autogen.sh && \ + ./configure && \ + make clean && \ + make \ + ) -- 1.7.1 From 9c513d9f6b4af896c8c830e87dc7ef8f8701a857 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 30 Jun 2011 15:15:22 +0200 Subject: [PATCH 2/2] s3:build: add vfs_examples to the everything target So that one can not pass autobuild without keeping the vfs examples intact. Autobuild-User: Michael Adam Autobuild-Date: Thu Jun 30 16:52:48 CEST 2011 on sn-devel-104 --- source3/Makefile.in | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/source3/Makefile.in b/source3/Makefile.in index 99342ef..485de6a 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1612,7 +1612,8 @@ idl_full:: everything:: all libtalloc libsmbclient libnetapi debug2html smbfilter talloctort replacetort smbconftort modules torture \ - $(EVERYTHING_PROGS) + $(EVERYTHING_PROGS) \ + vfs_examples .SUFFIXES: .SUFFIXES: .c .o .lo -- 1.7.1