Makefile: Don't use ** in globs

Many shells don't have GLOBSTAR turned on by default.  This is
why uv and v8 so often don't get cleaned out properly.
v0.7.4-release
isaacs 2012-02-08 09:59:31 -08:00
parent 9a6012edd9
commit 02c1cb54aa
1 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,8 @@ uninstall:
out/Release/node tools/installer.js ./config.gypi uninstall
clean:
-rm -rf out/Makefile node node_g out/**/*.o out/**/*.a out/$(BUILDTYPE)/node
-rm -rf out/Makefile node node_g out/$(BUILDTYPE)/node
-find out/ -name '*.o' -o -name '*.a' | xargs rm -rf
distclean:
-rm -rf out