1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-24 10:50:22 +03:00

waf: allow for commands like "make bin/smbtorture"

I finally worked out the GNU make syntax for this
This commit is contained in:
Andrew Tridgell 2010-10-06 23:12:44 +11:00
parent 8a56f8ddb1
commit 7dcecbd077
2 changed files with 9 additions and 0 deletions

View File

@ -56,6 +56,10 @@ etags:
ctags:
$(WAF) ctags
bin/%:: FORCE
$(WAF) --targets=`basename $@`
FORCE:
configure: autogen-waf.sh BUILDTOOLS/scripts/configure.waf
./autogen-waf.sh

View File

@ -58,3 +58,8 @@ etags:
ctags:
$(WAF) ctags
# this allows for things like "make bin/smbtorture"
bin/%:: FORCE
$(WAF) --targets=`basename $@`
FORCE: