Skip to content

Commit

Permalink
Fix missing pkg-config flags
Browse files Browse the repository at this point in the history
  • Loading branch information
LoupVaillant committed Jan 15, 2024
1 parent be35946 commit b02114d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/speed/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,9 @@ $(TSSH_O):
speed.o : speed.c speed.h ../utils.h
$(CC) -c $(CFLAGS) $< -o $@ -I .. -I ../../src/ -I ../../src/optional
speed-sodium.o : speed-sodium.c speed.h ../utils.h
$(CC) -c $(CFLAGS) $< -o $@ -I ..
$(CC) -c $(CFLAGS) $< -o $@ -I .. `pkg-config --cflags libsodium`
speed-hydrogen.o : speed-hydrogen.c speed.h ../utils.h
$(CC) -c $(CFLAGS) $< -o $@ -I ..
$(CC) -c $(CFLAGS) $< -o $@ -I .. `pkg-config --cflags libhydrogen`
speed-tweetnacl.o : speed-tweetnacl.c speed.h ../utils.h $(TWEET_HEADERS)
$(CC) -c $(CFLAGS) $< -o $@ -I .. -I ../externals/tweetnacl
speed-c25519.o : speed-c25519.c speed.h ../utils.h $(C25519_HEADERS)
Expand Down

0 comments on commit b02114d

Please sign in to comment.