diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-23 08:24:02 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-23 08:25:01 +1000 |
commit | a36c7b8b74c209b010e763487a750472d9c2e0a1 (patch) | |
tree | 7e8f1b8b540e81b629d2684cc1216c06e805eaf3 | |
parent | bd08249d683fd2f5ce6358ec2a9cebf2d03db1c6 (diff) | |
download | samba-a36c7b8b74c209b010e763487a750472d9c2e0a1.tar.gz samba-a36c7b8b74c209b010e763487a750472d9c2e0a1.tar.bz2 samba-a36c7b8b74c209b010e763487a750472d9c2e0a1.zip |
build: use 'waf distclean' for make distclean
this cleans up the more than rm -rf bin
-rw-r--r-- | buildtools/scripts/Makefile.waf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildtools/scripts/Makefile.waf b/buildtools/scripts/Makefile.waf index f9c3fbb3bb..a517bae3b5 100644 --- a/buildtools/scripts/Makefile.waf +++ b/buildtools/scripts/Makefile.waf @@ -23,8 +23,8 @@ dist: clean: $(WAF) clean -distclean: clean - rm -rf bin +distclean: + $(WAF) distclean # some compatibility make targets everything: all |