1*e34d2894Sderaadt# $OpenBSD: Makefile,v 1.3 2017/12/10 19:37:57 deraadt Exp $ 241503fafSmarkus 341503fafSmarkus.PATH: ${.CURDIR}/.. 441503fafSmarkus 5*e34d2894SderaadtSRCS= ssh-pkcs11-helper.c ssh-pkcs11.c 6*e34d2894SderaadtSRCS+= addrmatch.c atomicio.c authfile.c bitmap.c blocks.c bufaux.c buffer.c \ 7*e34d2894Sderaadt chacha.c cipher-chachapoly.c cipher.c compat.c digest-openssl.c \ 8*e34d2894Sderaadt ed25519.c fatal.c fe25519.c ge25519.c hash.c key.c krl.c log.c match.c \ 9*e34d2894Sderaadt misc.c poly1305.c readpass.c sc25519.c ssh-dss.c ssh-ecdsa.c \ 10*e34d2894Sderaadt ssh-ed25519.c ssh-rsa.c sshbuf-getput-basic.c sshbuf-getput-crypto.c \ 11*e34d2894Sderaadt sshbuf-misc.c sshbuf.c ssherr.c sshkey.c uidswap.c verify.c xmalloc.c 12*e34d2894Sderaadt 1341503fafSmarkusPROG= ssh-pkcs11-helper 1441503fafSmarkusBINOWN= root 1541503fafSmarkus 1641503fafSmarkusBINMODE?=555 1741503fafSmarkus 1841503fafSmarkusBINDIR= /usr/libexec 193e04efbeSmarkusMAN= ssh-pkcs11-helper.8 2041503fafSmarkus 2141503fafSmarkus.include <bsd.prog.mk> 2241503fafSmarkus 23*e34d2894SderaadtLDADD+= -lcrypto -lutil 24*e34d2894SderaadtDPADD+= ${LIBCRYPTO} ${LIBUTIL} 25*e34d2894Sderaadt 26