]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - secure/usr.bin/ssh-agent/Makefile
Import OpenCSD v.1.4.0.
[FreeBSD/FreeBSD.git] / secure / usr.bin / ssh-agent / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4 .include "${SRCTOP}/secure/ssh.mk"
5
6 PROG=   ssh-agent
7 SRCS=   ssh-agent.c
8 PACKAGE=        ssh
9
10 LIBADD= ssh
11
12 .if ${MK_LDNS} != "no"
13 CFLAGS+=        -DHAVE_LDNS=1
14 #DPADD+=        ${LIBLDNS}
15 #LDADD+=        -lldns
16 .endif
17
18 .if defined(LOCALBASE)
19 CFLAGS+= -DDEFAULT_PKCS11_WHITELIST='"/usr/lib*/*,${LOCALBASE}/lib*/*"'
20 .endif
21
22 LIBADD+=        crypto
23
24 .include <bsd.prog.mk>
25
26 .PATH:  ${SSHDIR}