diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-11-07 17:30:42 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-11-07 17:30:42 +0100 |
commit | b571be216d047daac09618942b0ae3380e24e63c (patch) | |
tree | 66161ecbc270ceb77f43928bee5665794ae78322 /Makefile | |
parent | check that word size is a multiple of 8 (diff) | |
download | libkeccak-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |