@@ -87,16 +87,16 @@ test-valgrind: all
87
87
$(PYTHON ) tools/test.py --mode=release --valgrind sequential parallel message
88
88
89
89
test/gc/node_modules/weak/build/Release/weakref.node : $(NODE_EXE )
90
- ./ $( NODE_EXE ) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
90
+ $( NODE ) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
91
91
--directory=" $( shell pwd) /test/gc/node_modules/weak" \
92
92
--nodedir=" $( shell pwd) "
93
93
94
94
build-addons : $(NODE_EXE )
95
95
rm -rf test/addons/doc-* /
96
- ./ $( NODE_EXE ) tools/doc/addon-verify.js
96
+ $( NODE ) tools/doc/addon-verify.js
97
97
$(foreach dir, \
98
98
$(sort $(dir $(wildcard test/addons/* /* .gyp) ) ) , \
99
- ./ $( NODE_EXE ) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
99
+ $( NODE ) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
100
100
--directory=" $( shell pwd) /$( dir) " \
101
101
--nodedir=" $( shell pwd) " && ) echo " build done"
102
102
@@ -153,7 +153,7 @@ test-npm: $(NODE_EXE)
153
153
rm -rf npm-cache npm-tmp npm-prefix
154
154
155
155
test-npm-publish : $(NODE_EXE )
156
- npm_package_config_publishtest=true ./ $( NODE_EXE ) deps/npm/test/run.js
156
+ npm_package_config_publishtest=true $( NODE ) deps/npm/test/run.js
157
157
158
158
test-addons : test-build
159
159
$(PYTHON ) tools/test.py --mode=release addons
@@ -185,10 +185,10 @@ out/doc/%: doc/%
185
185
cp -r $< $@
186
186
187
187
out/doc/api/% .json : doc/api/% .markdown $(NODE_EXE )
188
- out/Release/ $( NODE_EXE ) tools/doc/generate.js --format=json $< > $@
188
+ $( NODE ) tools/doc/generate.js --format=json $< > $@
189
189
190
190
out/doc/api/% .html : doc/api/% .markdown $(NODE_EXE )
191
- out/Release/ $( NODE_EXE ) tools/doc/generate.js --format=html --template=doc/template.html $< > $@
191
+ $( NODE ) tools/doc/generate.js --format=html --template=doc/template.html $< > $@
192
192
193
193
docopen : out/doc/api/all.html
194
194
-google-chrome out/doc/api/all.html
@@ -382,9 +382,9 @@ bench-http-simple:
382
382
benchmark/http_simple_bench.sh
383
383
384
384
bench-idle :
385
- ./ $( NODE_EXE ) benchmark/idle_server.js &
385
+ $( NODE ) benchmark/idle_server.js &
386
386
sleep 1
387
- ./ $( NODE_EXE ) benchmark/idle_clients.js &
387
+ $( NODE ) benchmark/idle_clients.js &
388
388
389
389
jslintfix :
390
390
PYTHONPATH=tools/closure_linter/:tools/gflags/ $(PYTHON ) tools/closure_linter/closure_linter/fixjsstyle.py --strict --nojsdoc -r lib/ -r src/ --exclude_files lib/punycode.js
0 commit comments