Skip to content

Commit

Permalink
Merge pull request basho#126 from basho/bb-make-all-results
Browse files Browse the repository at this point in the history
Adding support for $ make all_results
  • Loading branch information
slfritchie committed Apr 23, 2014
2 parents 3d5c35d + 2c73938 commit 1eac4e9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,10 @@ kbyte_sec-results:

mbyte_sec-results:
Rscript --vanilla priv/summary.r --ylabel1stgraph Mbyte/sec -i tests/current

TARGETS := $(shell ls tests/ | grep -v current)
JOBS := $(addprefix job,${TARGETS})
.PHONY: all_results ${JOBS}

all_results: ${JOBS} ; echo "$@ successfully generated."
${JOBS}: job%: ; Rscript --vanilla priv/summary.r -i tests/$*

0 comments on commit 1eac4e9

Please sign in to comment.