Browse Source

'make distclean' should not call 'waf clean'

Because if configure hasn't been run, then an error is reported.
v0.7.4-release
Ryan Dahl 15 years ago
parent
commit
2c016badc2
  1. 8
      Makefile

8
Makefile

@ -45,11 +45,13 @@ doc/node.1: doc/api.xml
website-upload: doc website-upload: doc
scp doc/* linode:~/tinyclouds/node/ scp doc/* linode:~/tinyclouds/node/
clean: docclean:
@-rm -f doc/node.1 doc/api.xml doc/api.html @-rm -f doc/node.1 doc/api.xml doc/api.html
clean: docclean
@$(WAF) clean @$(WAF) clean
distclean: clean distclean: docclean
@-rm -rf build/ @-rm -rf build/
@-find tools/ -name "*.pyc" -delete @-find tools/ -name "*.pyc" -delete
@ -70,4 +72,4 @@ dist: doc/node.1 doc/api.html
rm -r $(TARNAME) rm -r $(TARNAME)
gzip -f -9 $(TARNAME).tar 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

Loading…
Cancel
Save