diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-05-22 12:23:20 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-05-28 12:17:10 +1000 |
commit | cd4b413cb0574c459c1c24cf07f8d6b44f5fc077 (patch) | |
tree | 692104ce22e21cb0e8320b5c7aa9c4c2102eafc0 /source3/Makefile-smbtorture | |
parent | 97cceb5f8b9fc68cb8942092e92fde2b965883e4 (diff) | |
download | samba-cd4b413cb0574c459c1c24cf07f8d6b44f5fc077.tar.gz samba-cd4b413cb0574c459c1c24cf07f8d6b44f5fc077.tar.bz2 samba-cd4b413cb0574c459c1c24cf07f8d6b44f5fc077.zip |
build: Remove autoconf build system
We are now confident that that waf build system meets enough of our needs
that we will work to improve it, rather than maintain two build systems.
Andrew Bartlett
Reviewed-by: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'source3/Makefile-smbtorture')
-rw-r--r-- | source3/Makefile-smbtorture | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/source3/Makefile-smbtorture b/source3/Makefile-smbtorture deleted file mode 100644 index d93e8ad49b..0000000000 --- a/source3/Makefile-smbtorture +++ /dev/null @@ -1,24 +0,0 @@ -WAF_BINARY=buildtools/bin/waf -WAF=$(WAF_BINARY) -WAF_BUILD=WAF_MAKE=1 $(WAF_BINARY) -SAMBA4_BINARIES="smbtorture" - -samba4-configure: - @(cd .. && \ - CFLAGS='' $(WAF) reconfigure || \ - CFLAGS='' $(WAF) configure --enable-selftest --nonshared-binary=$(SAMBA4_BINARIES) --enable-auto-reconfigure --enable-debug) - -.PHONY: samba4-configure - -bin/smbtorture: $(BINARY_PREREQS) samba4-configure samba4-config-compare - cd .. && $(WAF_BUILD) - cp ../bin/smbtorture bin/smbtorture - -.PHONY: bin/smbtorture - -samba4-config-compare: samba4-configure - @echo "Comparing config.h from autoconf and waf" - @echo "Configure results missing from WAF are:" - ../buildtools/compare_config_h3.sh include/autoconf/config.h ../bin/default/include/config.h - @echo "Configure results additionaly found by WAF are:" - DIFF="comm -13" ../buildtools/compare_config_h3.sh include/autoconf/config.h ../bin/default/include/config.h |