s3: Copy share mode handling from before to after open_file
[samba.git] / source3 / Makefile-smbtorture4
1 WAF_BINARY=buildtools/bin/waf
2 WAF=$(WAF_BINARY)
3 WAF_BUILD=WAF_MAKE=1 $(WAF_BINARY)
4 SAMBA4_BINARIES="smbtorture,ndrdump"
5
6 samba4-configure:
7         @(cd .. && \
8                 CFLAGS='' $(WAF) reconfigure || \
9                 CFLAGS='' $(WAF) configure --enable-selftest --nonshared-binary=$(SAMBA4_BINARIES) --enable-auto-reconfigure --enable-debug)
10
11 .PHONY: samba4-configure
12
13 bin/smbtorture4: $(BINARY_PREREQS) samba4-configure samba4-config-compare
14         cd .. && $(WAF_BUILD) --targets=smbtorture
15         cp ../bin/smbtorture bin/smbtorture4
16
17 .PHONY: bin/smbtorture4
18
19 bin/ndrdump4: $(BINARY_PREREQS) samba4-configure
20         cd .. && $(WAF_BUILD) --targets=ndrdump
21         cp ../bin/ndrdump bin/ndrdump4
22
23 .PHONY: bin/ndrdump4
24
25 samba4-config-compare: samba4-configure
26         @echo "Comparing config.h from autoconf and waf"
27         @echo "Configure results missing from WAF are:"
28         ../buildtools/compare_config_h3.sh include/autoconf/config.h ../bin/default/include/config.h
29         @echo "Configure results additionaly found by WAF are:"
30         DIFF="comm -13" ../buildtools/compare_config_h3.sh include/autoconf/config.h ../bin/default/include/config.h