]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - secure/usr.bin/ssh-agent/Makefile
MFH
[FreeBSD/FreeBSD.git] / secure / usr.bin / ssh-agent / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 PROG=   ssh-agent
6 SRCS=   ssh-agent.c
7 PACKAGE=        ssh
8 CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
9 SRCS+=  ssh_namespace.h
10
11 LIBADD= ssh
12
13 .if ${MK_LDNS} != "no"
14 CFLAGS+=        -DHAVE_LDNS=1
15 #DPADD+=        ${LIBLDNS}
16 #LDADD+=        -lldns
17 .endif
18
19 LIBADD+=        crypto
20
21 .include <bsd.prog.mk>
22
23 .PATH:  ${SSHDIR}