mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
0514a84f7e
This essentially reverts commit a943a9ba2f
.
I've fixed this by making lib/param/parm_table.c honour --enable-selftest.
Andrew Bartlett
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
WAF_BINARY=buildtools/bin/waf
|
|
WAF=$(WAF_BINARY)
|
|
WAF_BUILD=WAF_MAKE=1 $(WAF_BINARY)
|
|
SAMBA4_BINARIES="smbtorture,ndrdump"
|
|
|
|
samba4-configure:
|
|
@(cd .. && \
|
|
CFLAGS='' $(WAF) reconfigure || \
|
|
CFLAGS='' $(WAF) configure --enable-selftest --nonshared-binary=$(SAMBA4_BINARIES) --enable-auto-reconfigure --enable-debug)
|
|
|
|
.PHONY: samba4-configure
|
|
|
|
bin/smbtorture4: $(BINARY_PREREQS) samba4-configure samba4-config-compare
|
|
cd .. && $(WAF_BUILD) --targets=smbtorture
|
|
cp ../bin/smbtorture bin/smbtorture4
|
|
|
|
.PHONY: bin/smbtorture4
|
|
|
|
bin/ndrdump4: $(BINARY_PREREQS) samba4-configure
|
|
cd .. && $(WAF_BUILD) --targets=ndrdump
|
|
cp ../bin/ndrdump bin/ndrdump4
|
|
|
|
.PHONY: bin/ndrdump4
|
|
|
|
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
|