aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-11-07 17:30:42 +0100
committerMattias Andrée <maandree@operamail.com>2014-11-07 17:30:42 +0100
commitb571be216d047daac09618942b0ae3380e24e63c (patch)
tree66161ecbc270ceb77f43928bee5665794ae78322 /Makefile
parentcheck that word size is a multiple of 8 (diff)
downloadlibkeccak-b571be216d047daac09618942b0ae3380e24e63c.tar.gz
libkeccak-b571be216d047daac09618942b0ae3380e24e63c.tar.bz2
libkeccak-b571be216d047daac09618942b0ae3380e24e63c.tar.xz
something seems to be wrong in libkeccak_f_round (not libkeccak_f_round64), but I have not figured out what
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1955988..82b8f36 100644
--- a/Makefile
+++ b/Makefile
@@ -97,7 +97,7 @@ obj/benchmark.o: src/benchmark.c src/libkeccak/*.h src/libkeccak.h
.PHONY: check
-check: bin/test
+check: bin/test bin/libkeccak.so
@test $$(sha256sum LICENSE | cut -d ' ' -f 1) = \
57c8ff33c9c0cfc3ef00e650a1cc910d7ee479a8bc509f6c9209a7c2a11399d6 || \
( echo 'The file LICENSE is incorrect, test will fail!' ; false )
@@ -108,7 +108,7 @@ check: bin/test
.PHONY: run-benchmark
-run-benchmark: bin/benchmark
+run-benchmark: bin/benchmark bin/libkeccak.so
for i in $$(seq 7) ; do env LD_LIBRARY_PATH=bin bin/benchmark ; done | median