From f1d5a3a722f22dc2c6a9844b9b8a0cc583cc988b Mon Sep 17 00:00:00 2001 From: Samuel Neves Date: Sun, 12 Jun 2016 17:07:18 +0100 Subject: missing dependency --- bench/makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bench/makefile b/bench/makefile index 559e3d3..573d4b0 100644 --- a/bench/makefile +++ b/bench/makefile @@ -3,12 +3,14 @@ CC=gcc CFLAGS=-std=gnu99 -O3 -march=native -DSUPERCOP # -DHAVE_XOP # uncomment on XOP-enabled CPUs FILES=bench.c -all: +all: bench + +bench: bench.c $(CC) $(FILES) $(CFLAGS) ../sse/blake2b.c -o blake2b $(CC) $(FILES) $(CFLAGS) ../sse/blake2s.c -o blake2s $(CC) $(FILES) $(CFLAGS) md5.c -o md5 -lcrypto -lz -plot: +plot: bench ./blake2b > blake2b.data ./blake2s > blake2s.data ./md5 > md5.data -- cgit v1.2.3