opnsense-src/secure/usr.bin/ssh-agent/Makefile

27 lines
384 B
Makefile
Raw Normal View History

# $FreeBSD$
.include <src.opts.mk>
.include "${SRCTOP}/secure/ssh.mk"
PROG= ssh-agent
2009-10-01 13:12:52 -04:00
SRCS= ssh-agent.c
PACKAGE= ssh
2014-11-25 16:18:18 -05:00
LIBADD= ssh
.if ${MK_LDNS} != "no"
CFLAGS+= -DHAVE_LDNS=1
#DPADD+= ${LIBLDNS}
#LDADD+= -lldns
.endif
.if defined(LOCALBASE)
CFLAGS+= -DDEFAULT_PKCS11_WHITELIST='"/usr/lib*/*,${LOCALBASE}/lib*/*"'
.endif
LIBADD+= crypto
.include <bsd.prog.mk>
.PATH: ${SSHDIR}