summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-12-01 09:56:29 +1100
committerAndrew Tridgell <tridge@samba.org>2010-12-01 11:03:25 +1100
commit557401b68d0d96f8a21037c917cad77c0e6e2a89 (patch)
treef720680003c2c04373616a2bd7dcbba2275af3c7
parent062378c1b4ba4f199cee6d4368e87f1e0ba820a6 (diff)
downloadsamba-557401b68d0d96f8a21037c917cad77c0e6e2a89.tar.gz
samba-557401b68d0d96f8a21037c917cad77c0e6e2a89.tar.bz2
samba-557401b68d0d96f8a21037c917cad77c0e6e2a89.zip
s4-build: added a 'make help' target
-rw-r--r--source4/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/Makefile b/source4/Makefile
index 838f0a97bb..77b3189a3b 100644
--- a/source4/Makefile
+++ b/source4/Makefile
@@ -1,6 +1,7 @@
# simple makefile wrapper to run waf
-WAF=WAF_MAKE=1 ../buildtools/bin/waf
+WAF_BINARY=../buildtools/bin/waf
+WAF=WAF_MAKE=1 $(WAF_BINARY)
all:
$(WAF) build
@@ -14,6 +15,10 @@ uninstall:
test:
$(WAF) test $(TEST_OPTIONS)
+help:
+ @echo NOTE: to run extended waf options use $(WAF_BINARY) or modify your PATH
+ $(WAF) --help
+
subunit-test:
$(WAF) test --filtered-subunit $(TEST_OPTIONS)