xref: /freebsd/secure/libexec/ssh-pkcs11-helper/Makefile (revision e9ac41698b2f322d55ccf9da50a3596edb2c1800)
1.include <src.opts.mk>
2.include "${SRCTOP}/secure/ssh.mk"
3
4PROG=	ssh-pkcs11-helper
5SRCS=	ssh-pkcs11.c ssh-pkcs11-helper.c
6MAN=	ssh-pkcs11-helper.8
7
8LIBADD=	ssh
9
10.if ${MK_LDNS} != "no"
11CFLAGS+=	-DHAVE_LDNS=1
12#DPADD+=	${LIBLDNS}
13#LDADD+=	-lldns
14.endif
15
16LIBADD+=	crypto
17
18.include <bsd.prog.mk>
19
20.PATH:	${SSHDIR}
21