From ee15889c433bb692e48f8e6e68016d3d0995c04e Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 6 Nov 2019 01:03:04 -0500 Subject: Use explicit_bzero from LibreSSL --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9e581fa..465a2e9 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ LIBRESSL_PREFIX = /usr/local CFLAGS += -std=c11 -Wall -Wextra -Wpedantic CFLAGS += -I${LIBRESSL_PREFIX}/include LDFLAGS += -L${LIBRESSL_PREFIX}/lib -LDLIBS = -lcrypt -ltls +LDLIBS = -lcrypt -lcrypto -ltls BINS = calico pounce MANS = ${BINS:=.1} @@ -31,7 +31,7 @@ calico: dispatch.o pounce: ${OBJS} ${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@ -${OBJS}: bounce.h +${OBJS}: bounce.h compat.h tags: *.c *.h ctags -w *.c *.h -- cgit 1.4.1