1
1
mirror of https://github.com/BLAKE2/BLAKE2 synced 2024-11-08 14:59:19 +01:00

missing dependency

This commit is contained in:
Samuel Neves 2016-06-12 17:07:18 +01:00
parent 369aa70c0c
commit f1d5a3a722

@ -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