diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2005-06-06 16:13:07 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2005-06-06 16:13:07 +0000 |
| commit | 32f80c77d0ac829da7dc50356410c269596bc171 (patch) | |
| tree | fc0d891fb78693b9d28a32724c77136823e79d08 /secure/usr.bin/ssh-agent | |
| parent | 463d4f50933728c5abbf54c62b42e4c859e91f42 (diff) | |
Notes
Diffstat (limited to 'secure/usr.bin/ssh-agent')
| -rw-r--r-- | secure/usr.bin/ssh-agent/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/secure/usr.bin/ssh-agent/Makefile b/secure/usr.bin/ssh-agent/Makefile index 2f88a6d969c5..9aa20844d868 100644 --- a/secure/usr.bin/ssh-agent/Makefile +++ b/secure/usr.bin/ssh-agent/Makefile @@ -1,10 +1,12 @@ # $FreeBSD$ +LIBSSH= ${.OBJDIR}/../../lib/libssh/libssh.a + PROG= ssh-agent CFLAGS+=-I${SSHDIR} DPADD= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ} -LDADD= -lssh -lcrypt -lcrypto -lz +LDADD= ${LIBSSH} -lcrypt -lcrypto -lz .include <bsd.prog.mk> |
