Browse Source

Make 'make distclean' work on solaris

v0.7.4-release
Ryan Dahl 15 years ago
parent
commit
ff6409469d
  1. 7
      Makefile

7
Makefile

@ -65,10 +65,11 @@ docclean:
clean:
@$(WAF) clean
@-find tools/ -name "*.pyc" -delete
@-find tools -name "*.pyc" | xargs rm -f
distclean: clean docclean
@-rm -rf build/
distclean: docclean
@-find tools -name "*.pyc" | xargs rm -f
@-rm -rf build/ node node_g
check:
@tools/waf-light check

Loading…
Cancel
Save