diff options
author | June McEnroe <june@causal.agency> | 2019-11-21 16:45:40 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-11-21 16:45:40 -0500 |
commit | 3051555d4e7975bcc05a9fef86b4016637a14832 (patch) | |
tree | 0790a7a2d6828aa4510afd39c88e5e834a844bfd /Makefile | |
parent | Fix wordcmp return value when the words have differing lengths (diff) | |
download | pounce-3051555d4e7975bcc05a9fef86b4016637a14832.tar.gz pounce-3051555d4e7975bcc05a9fef86b4016637a14832.zip |
Link calico with libcrypto on Linux 1.0p1
For the strlcpy implementation.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
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 $@ |