Browse Source

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 13 years ago
parent
commit
02c1cb54aa
  1. 3
      Makefile

3
Makefile

@ -39,7 +39,8 @@ uninstall:
out/Release/node tools/installer.js ./config.gypi uninstall out/Release/node tools/installer.js ./config.gypi uninstall
clean: 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: distclean:
-rm -rf out -rm -rf out

Loading…
Cancel
Save