summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-06-10 11:32:27 +1000
committerAndrew Tridgell <tridge@samba.org>2011-06-10 17:21:26 +1000
commitae1414e79698c0c506aabd7458c4fbae8cc8fcf5 (patch)
tree37cf6f9d42d4664c3c221db64d7ff85b8b2e8f13 /Makefile
parent91f351568aab728269cdfce3a6cfad8b5785b8d8 (diff)
downloadsamba-ae1414e79698c0c506aabd7458c4fbae8cc8fcf5.tar.gz
waf: fixed 'make bin/XXX' for the remaining binaries
this fixes 'make bin/smbd' to work correctly with the waf build. It didn't work before as smbd is actually 'smbd/smbd' internally and we tried to use the target name 'smbd'. The new approach reads the symlink to get the right target. This also speeds up the null build by quite a lot
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cbbf045062e..3b40c73d957 100644
--- a/Makefile
+++ b/Makefile
@@ -68,7 +68,7 @@ ctags:
# this allows for things like "make bin/smbtorture"
bin/%:: FORCE
- $(WAF) --targets=`basename $@`
+ $(WAF) --targets=$@
FORCE:
pydoctor: