aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.bin/ssh-keyscan
diff options
context:
space:
mode:
authorBrian Feldman <green@FreeBSD.org>2001-05-04 04:21:25 +0000
committerBrian Feldman <green@FreeBSD.org>2001-05-04 04:21:25 +0000
commitd350064e0b3a02d36db2e9d93fdbb907c30474d4 (patch)
treeed4da512f24099412a538fcecc07aff5b9db6847 /secure/usr.bin/ssh-keyscan
parent345012bf8b2731a96a9deca8ee4361016b225001 (diff)
downloadsrc-d350064e0b3a02d36db2e9d93fdbb907c30474d4.tar.gz
src-d350064e0b3a02d36db2e9d93fdbb907c30474d4.zip
Follow the OpenSSH 2.9 upgrade with the infrastructure. Two new
programs are now included: sftp(1) and ssh-keyscan(1).
Notes
Notes: svn path=/head/; revision=76264
Diffstat (limited to 'secure/usr.bin/ssh-keyscan')
-rw-r--r--secure/usr.bin/ssh-keyscan/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/secure/usr.bin/ssh-keyscan/Makefile b/secure/usr.bin/ssh-keyscan/Makefile
new file mode 100644
index 000000000000..7a8c67547dd9
--- /dev/null
+++ b/secure/usr.bin/ssh-keyscan/Makefile
@@ -0,0 +1,12 @@
+# $FreeBSD$
+#
+
+PROG= ssh-keyscan
+SRCS= ssh-keyscan.c
+
+LDADD+= ${LIBSSH} -lcrypto
+DPADD+= ${LIBSSH} ${LIBCRYPTO}
+
+.include <bsd.prog.mk>
+
+.PATH: ${SSHDIR}