diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-22 14:52:19 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-22 19:36:15 +1000 |
commit | 6669152a4a5919ecad633b594708d6b95577b4dc (patch) | |
tree | cdf2a596faa1a3346519dddb4c36114c22a02114 /buildtools | |
parent | 70cc9fd5c62f385d6e94380597f02da80cea3649 (diff) | |
download | samba-6669152a4a5919ecad633b594708d6b95577b4dc.tar.gz samba-6669152a4a5919ecad633b594708d6b95577b4dc.tar.bz2 samba-6669152a4a5919ecad633b594708d6b95577b4dc.zip |
build: we don't need this makefile magic any more
The waf build now checks for all A=B variables passed via make
and sets the same waf internal variable. This means all waf options
are available via make.
Removing this from the Makefile makes us less reliant on a modern
version of make.
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/scripts/Makefile.waf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildtools/scripts/Makefile.waf b/buildtools/scripts/Makefile.waf index ac5c01355a..f9c3fbb3bb 100644 --- a/buildtools/scripts/Makefile.waf +++ b/buildtools/scripts/Makefile.waf @@ -12,10 +12,10 @@ uninstall: $(WAF) uninstall test: - $(WAF) test $(if $(TESTS),--tests="$(TESTS)") + $(WAF) test quicktest: - $(WAF) test --quick $(if $(TESTS),--tests="$(TESTS)") + $(WAF) test --quick dist: $(WAF) dist |