From ae1414e79698c0c506aabd7458c4fbae8cc8fcf5 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 10 Jun 2011 11:32:27 +1000 Subject: 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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: -- cgit v1.2.1