X-Git-Url: http://git.samba.org/?a=blobdiff_plain;f=Makefile;h=95681ae9de79af20bf25f47125975a07ac9ff1a0;hb=cf05ba5b3210e9258dd4a1126bd29a1e696ec957;hp=a53c27af8540fd5e5e9fb0f2aa34a2f6f44b9d2f;hpb=fbd418d2f666c3e2af31d34667b63c03fdca6ca6;p=obnox%2Fsamba%2Fsamba-obnox.git diff --git a/Makefile b/Makefile index a53c27af854..95681ae9de7 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,12 @@ gdbtestenv: quicktest: $(WAF) test --quick $(TEST_OPTIONS) +randomized-test: + $(WAF) test --random-order $(TEST_OPTIONS) + +testlist: + $(WAF) test --list $(TEST_OPTIONS) + dist: touch .tmplock WAFLOCK=.tmplock $(WAF) dist @@ -70,13 +76,43 @@ etags: ctags: $(WAF) ctags -# this allows for things like "make bin/smbtorture" -bin/%:: FORCE - $(WAF) --targets=$@ -FORCE: - pydoctor: $(WAF) pydoctor pep8: $(WAF) pep8 + +# Adding force on the depencies will force the target to be always rebuild form the Make +# point of view forcing make to invoke waf + +bin/smbd: FORCE + $(WAF) --targets=smbd/smbd + +bin/winbindd: FORCE + $(WAF) --targets=winbindd/winbindd + +bin/nmbd: FORCE + $(WAF) --targets=nmbd/nmbd + +bin/smbclient: FORCE + $(WAF) --targets=client/smbclient + +# this allows for things like "make bin/smbtorture" +# mainly for the binary that don't have a broken mode like smbd that must +# be build with smbd/smbd +bin/%: FORCE + $(WAF) --targets=$(subst bin/,,$@) + +# Catch all rule to be able to call make service_repl in order to find the name +# of the submodule you want to build, look at the wscript +%: + $(WAF) --targets=$@ + +# This rule has to be the last one +FORCE: +# Having .NOTPARALLEL will force make to do target once at a time but still -j +# will be present in the MAKEFLAGS that are in turn interpreted by WAF +# so only 1 waf at a time will be called but it will still be able to do parralel builds if +# instructed to do so +.NOTPARALLEL: % +.PHONY: FORCE everything testsuite check torture