summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh-pkcs11-helper/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/ssh/ssh-pkcs11-helper/Makefile')
-rw-r--r--usr.bin/ssh/ssh-pkcs11-helper/Makefile17
1 files changed, 12 insertions, 5 deletions
diff --git a/usr.bin/ssh/ssh-pkcs11-helper/Makefile b/usr.bin/ssh/ssh-pkcs11-helper/Makefile
index 7cd1b3b8785..bb5e19f5b86 100644
--- a/usr.bin/ssh/ssh-pkcs11-helper/Makefile
+++ b/usr.bin/ssh/ssh-pkcs11-helper/Makefile
@@ -1,7 +1,15 @@
-# $OpenBSD: Makefile,v 1.2 2010/02/09 08:25:32 markus Exp $
+# $OpenBSD: Makefile,v 1.3 2017/12/10 19:37:57 deraadt Exp $
.PATH: ${.CURDIR}/..
+SRCS= ssh-pkcs11-helper.c ssh-pkcs11.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-pkcs11-helper
BINOWN= root
@@ -10,9 +18,8 @@ BINMODE?=555
BINDIR= /usr/libexec
MAN= ssh-pkcs11-helper.8
-SRCS= ssh-pkcs11-helper.c ssh-pkcs11.c
-
.include <bsd.prog.mk>
-LDADD+= -lcrypto
-DPADD+= ${LIBCRYPTO}
+LDADD+= -lcrypto -lutil
+DPADD+= ${LIBCRYPTO} ${LIBUTIL}
+