From: Loup Vaillant Date: Mon, 28 Jan 2019 23:20:31 +0000 (+0100) Subject: Forgot Libsodium include dependency X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=4d0d507da4e4ad730f9483c9eea71b205646e52e;p=Monocypher.git Forgot Libsodium include dependency --- diff --git a/tests/gen/makefile b/tests/gen/makefile index eb5369d..484da48 100644 --- a/tests/gen/makefile +++ b/tests/gen/makefile @@ -33,12 +33,13 @@ clean: $$(pkg-config --libs libsodium) ed25519.o: ../ed25519-donna/ed25519.c $(wildcard ../ed25519-donna/*.h) - $(CC) $(CFLAGS) -c $< \ - -I ../../src \ - -I ../../src/optional \ - -DED25519_CUSTOMHASH \ - -DED25519_TEST \ - -DED25519_NO_INLINE_ASM \ + $(CC) $(CFLAGS) -c $< \ + -I ../../src \ + -I ../../src/optional \ + $$(pkg-config --cflags libsodium) \ + -DED25519_CUSTOMHASH \ + -DED25519_TEST \ + -DED25519_NO_INLINE_ASM \ -DED25519_FORCE_32BIT vector_to_header.out: ../vector_to_header.c