From 2c016badc25f51f057697c76d39c999dce2bfb75 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 30 Dec 2009 02:45:15 +0100 Subject: [PATCH] 'make distclean' should not call 'waf clean' Because if configure hasn't been run, then an error is reported. --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 5036d7d6c6..5d77e2080e 100644 --- a/Makefile +++ b/Makefile @@ -45,11 +45,13 @@ doc/node.1: doc/api.xml website-upload: doc scp doc/* linode:~/tinyclouds/node/ -clean: +docclean: @-rm -f doc/node.1 doc/api.xml doc/api.html + +clean: docclean @$(WAF) clean -distclean: clean +distclean: docclean @-rm -rf build/ @-find tools/ -name "*.pyc" -delete @@ -70,4 +72,4 @@ dist: doc/node.1 doc/api.html rm -r $(TARNAME) gzip -f -9 $(TARNAME).tar -.PHONY: benchmark clean dist distclean check uninstall install all test test-all website-upload +.PHONY: benchmark clean docclean dist distclean check uninstall install all test test-all website-upload