diff options
Diffstat (limited to 'usr.bin/ssh/ssh-agent/Makefile')
-rw-r--r-- | usr.bin/ssh/ssh-agent/Makefile | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/usr.bin/ssh/ssh-agent/Makefile b/usr.bin/ssh/ssh-agent/Makefile index bfdc7d28830..b81d25e05c9 100644 --- a/usr.bin/ssh/ssh-agent/Makefile +++ b/usr.bin/ssh/ssh-agent/Makefile @@ -1,7 +1,15 @@ -# $OpenBSD: Makefile,v 1.25 2017/07/10 14:09:59 espie Exp $ +# $OpenBSD: Makefile,v 1.26 2017/12/10 19:37:57 deraadt Exp $ .PATH: ${.CURDIR}/.. +SRCS= ssh-agent.c ssh-pkcs11-client.c +SRCS+= addrmatch.c atomicio.c authfile.c bitmap.c blocks.c bufaux.c buffer.c \ + chacha.c cipher-chachapoly.c cipher.c compat.c digest-openssl.c \ + ed25519.c fatal.c fe25519.c ge25519.c hash.c key.c krl.c log.c match.c \ + misc.c poly1305.c readpass.c sc25519.c ssh-dss.c ssh-ecdsa.c \ + ssh-ed25519.c ssh-rsa.c sshbuf-getput-basic.c sshbuf-getput-crypto.c \ + sshbuf-misc.c sshbuf.c ssherr.c sshkey.c uidswap.c verify.c xmalloc.c + PROG= ssh-agent BINOWN= root BINGRP= _sshagnt @@ -10,9 +18,8 @@ BINMODE?=2555 BINDIR= /usr/bin -SRCS= ssh-agent.c ssh-pkcs11-client.c - .include <bsd.prog.mk> -LDADD+= -lcrypto -DPADD+= ${LIBCRYPTO} +LDADD+= -lcrypto -lutil +DPADD+= ${LIBCRYPTO} ${LIBUTIL} + |