summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-11-21 16:45:40 -0500
committerJune McEnroe <june@causal.agency>2019-11-21 16:45:40 -0500
commit3051555d4e7975bcc05a9fef86b4016637a14832 (patch)
tree0790a7a2d6828aa4510afd39c88e5e834a844bfd /Makefile
parentFix wordcmp return value when the words have differing lengths (diff)
downloadpounce-3051555d4e7975bcc05a9fef86b4016637a14832.tar.gz
pounce-3051555d4e7975bcc05a9fef86b4016637a14832.zip
Link calico with libcrypto on Linux 1.0p1
For the strlcpy implementation.
Diffstat (limited to '')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c0ea331..3ea6c06 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ dev: tags all
 all: ${BINS}
 
 calico: dispatch.o
-	${CC} ${LDFLAGS} dispatch.o -o $@
+	${CC} ${LDFLAGS} dispatch.o ${LDLIBS_calico} -o $@
 
 pounce: ${OBJS}
 	${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@