-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathMakefile
39 lines (38 loc) · 1.07 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
all:
@./run restocat/restocat.js
@./run express.js
@./run hapi.js
@./run rawnode.js
@./run restify.js
@./run koa.js
@./run total/total.js
@./run micro.js
@./run sails/sails.js
@./run feathers.js
@./run uws.js
@./run ukoa.js
@./run uexpress.js
@./run ufeathers.js
@echo | tee -a benchmarks.txt
@echo 'Simple HTTP benchmark results (wrk) with close connection' | tee -a benchmarks.txt
@sort -nr results.txt | tee -a benchmarks.txt
@rm results.txt
@./run restocat/restocat.js keep-alive
@./run express.js keep-alive
@./run hapi.js keep-alive
@./run rawnode.js keep-alive
@./run restify.js keep-alive
@./run koa.js keep-alive
@./run total/total.js keep-alive
@./run micro.js keep-alive
@./run sails/sails.js keep-alive
@./run feathers.js keep-alive
@./run uws.js keep-alive
@./run ukoa.js keep-alive
@./run uexpress.js keep-alive
@./run ufeathers.js keep-alive
@echo | tee -a benchmarks.txt
@echo 'Simple HTTP benchmark results (wrk) with keep-alive connection' | tee -a benchmarks.txt
@sort -nr results.txt | tee -a benchmarks.txt
@rm results.txt
.PHONY: all