aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.bin/ssh-keygen
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2005-06-06 16:13:07 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2005-06-06 16:13:07 +0000
commit32f80c77d0ac829da7dc50356410c269596bc171 (patch)
treefc0d891fb78693b9d28a32724c77136823e79d08 /secure/usr.bin/ssh-keygen
parent463d4f50933728c5abbf54c62b42e4c859e91f42 (diff)
downloadsrc-32f80c77d0ac829da7dc50356410c269596bc171.tar.gz
src-32f80c77d0ac829da7dc50356410c269596bc171.zip
Make libssh an INTERNALLIB like it is in {Net,Open}BSD.
Notes
Notes: svn path=/head/; revision=147056
Diffstat (limited to 'secure/usr.bin/ssh-keygen')
-rw-r--r--secure/usr.bin/ssh-keygen/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/secure/usr.bin/ssh-keygen/Makefile b/secure/usr.bin/ssh-keygen/Makefile
index 5dc86992ec96..b8a4cc170330 100644
--- a/secure/usr.bin/ssh-keygen/Makefile
+++ b/secure/usr.bin/ssh-keygen/Makefile
@@ -1,10 +1,12 @@
# $FreeBSD$
+LIBSSH= ${.OBJDIR}/../../lib/libssh/libssh.a
+
PROG= ssh-keygen
CFLAGS+=-I${SSHDIR}
DPADD= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ}
-LDADD= -lssh -lcrypt -lcrypto -lz
+LDADD= ${LIBSSH} -lcrypt -lcrypto -lz
.include <bsd.prog.mk>