Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-10-14 03:20:24 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-10-14 03:20:24 +0400
commitff456b38862de3fd0118c6ac6b3f46edb1fbb87f (patch)
tree2c7a7e8302e5f9340d66373da9a7bab3a72dd26e /Makefile
parentcdde22a27d797b853efac161eaec630d3405e924 (diff)
Add 'make bench' script
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 221111c12d3..bed8f36a540 100644
--- a/Makefile
+++ b/Makefile
@@ -36,9 +36,6 @@ test-pummel: all
test-internet: all
python tools/test.py internet
-benchmark: all
- build/default/node benchmark/run.js
-
# http://rtomayko.github.com/ronn
# gem install ronn
doc: doc/node.1 doc/api.html doc/index.html doc/changelog.html
@@ -85,4 +82,7 @@ dist: doc/node.1 doc/api.html
rm -rf $(TARNAME)
gzip -f -9 $(TARNAME).tar
-.PHONY: benchmark clean docclean dist distclean check uninstall install all test test-all website-upload
+bench:
+ benchmark/http_simple_bench.sh
+
+.PHONY: bench clean docclean dist distclean check uninstall install all test test-all website-upload