From 7c33e82158fb40f9fef4f8163cbcdead1a13b0ec Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Mon, 25 Nov 2019 12:19:10 +0100 Subject: [PATCH] Fixed speed benchmark build --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index f9d3b19..f82f1db 100644 --- a/makefile +++ b/makefile @@ -160,9 +160,9 @@ lib/speed-c25519.o:$(SPEED)/speed-c25519.c \ # test & speed executables TEST_OBJ= lib/utils.o lib/monocypher.o -test.out : $(TEST_OBJ) lib/test.o lib/sha512.o -test-legacy.out: $(TEST_OBJ) lib/test-legacy.o lib/chacha20.o lib/aead-incr.o -speed.out : $(TEST_OBJ) lib/sha512.o +test.out : lib/test.o $(TEST_OBJ) lib/sha512.o +test-legacy.out: lib/test-legacy.o $(TEST_OBJ) lib/chacha20.o lib/aead-incr.o +speed.out : lib/speed.o $(TEST_OBJ) lib/sha512.o test.out test-legacy.out speed.out: $(CC) $(CFLAGS) -I src -I src/optional -o $@ $^ speed-sodium.out: lib/speed-sodium.o lib/utils.o -- 2.47.3