diff --git a/Makefile b/Makefile index 6722873027..b642c04b2d 100644 --- a/Makefile +++ b/Makefile @@ -105,11 +105,15 @@ uninstall: clean: $(RM) -r out/Makefile $(NODE_EXE) $(NODE_G_EXE) out/$(BUILDTYPE)/$(BUILD_EXE_NAME) \ - out/$(BUILDTYPE)/node.exp + out/$(BUILDTYPE)/node.exp @if [ -d out ]; then find out/ -name '*.o' -o -name '*.a' -o -name '*.d' | xargs $(RM) -r; fi $(RM) -r node_modules @if [ -d deps/icu ]; then echo deleting deps/icu; $(RM) -r deps/icu; fi $(RM) test.tap + # Next one is legacy remove this at some point + $(RM) -r test/tmp* + $(RM) -r test/.tmp* + $(MAKE) test-addons-clean distclean: $(RM) -r out diff --git a/vcbuild.bat b/vcbuild.bat index 4d315ad3ff..7db343d874 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -541,7 +541,7 @@ echo Failed to create vc project files. goto exit :help -echo vcbuild.bat [debug/release] [msi] [test/test-ci/test-all/test-uv/test-internet/test-pummel/test-simple/test-message/test-async-hooks/test-v8/test-v8-intl/test-v8-benchmarks/test-v8-all] [clean] [noprojgen] [small-icu/full-icu/without-intl] [nobuild] [sign] [x86/x64] [vs2015/vs2017] [download-all] [enable-vtune] [lint/lint-ci] [no-NODE-OPTIONS] [link-module path-to-module] +echo vcbuild.bat [debug/release] [msi] [test/test-ci/test-all/test-uv/test-internet/test-pummel/test-simple/test-message/test-async-hooks/test-v8/test-v8-intl/test-v8-benchmarks/test-v8-all] [noprojgen] [small-icu/full-icu/without-intl] [nobuild] [sign] [x86/x64] [vs2015/vs2017] [download-all] [enable-vtune] [lint/lint-ci] [no-NODE-OPTIONS] [link-module path-to-module] echo Examples: echo vcbuild.bat : builds release build echo vcbuild.bat debug : builds debug build