From b5166cb7d269cd1bf90d1768f82767b05b9ac1f8 Mon Sep 17 00:00:00 2001 From: Yosuke Furukawa Date: Sat, 24 Jan 2015 08:56:04 +0900 Subject: [PATCH] benchmark: add bench-(url & events) make targets PR-URL: https://github.com/iojs/io.js/pull/584 Reviewed-By: Evan Lucas Reviewed-By: Rod Vagg --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 55f928287d093f..ffaed7b0338ebd 100644 --- a/Makefile +++ b/Makefile @@ -369,7 +369,13 @@ bench-array: all bench-buffer: all @$(NODE) benchmark/common.js buffers -bench-all: bench bench-misc bench-array bench-buffer +bench-url: all + @$(NODE) benchmark/common.js url + +bench-events: all + @$(NODE) benchmark/common.js events + +bench-all: bench bench-misc bench-array bench-buffer bench-url bench-events bench: bench-net bench-http bench-fs bench-tls