Skip to content

Commit e92364a

Browse files
committed
fix makefile
1 parent 1f6cb61 commit e92364a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@ tag = clojure-web-benchmark
22
volumes = $(shell pwd)/artifacts:/app/artifacts
33
run = docker run -v $(volumes) -it $(tag)
44

5+
dirs:
6+
mkdir -p artifacts/plots
57
docker-img:
68
docker build -t $(tag) .
7-
artifacts/results.csv: docker-img
9+
artifacts/results.csv: docker-img dirs
810
$(run) ./bench_all.sh
9-
plots: artifacts/results.csv docker-img
11+
plots: artifacts/results.csv docker-img dirs
1012
$(run) python3 generate_plots.py
1113
clean:
1214
$(run) rm -rf artifacts/*

0 commit comments

Comments
 (0)