]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - secure/usr.bin/ssh/Makefile
cdn-patch: mark unionfs as jail-safe
[FreeBSD/FreeBSD.git] / secure / usr.bin / ssh / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 PROG=   ssh
6 LINKS=  ${BINDIR}/ssh ${BINDIR}/slogin
7 MAN=    ssh.1 ssh_config.5
8 MLINKS= ssh.1 slogin.1
9 PACKAGE=        ssh
10
11 SRCS=   ssh.c readconf.c clientloop.c sshtty.c \
12         sshconnect.c sshconnect1.c sshconnect2.c mux.c
13
14 # gss-genr.c really belongs in libssh; see src/secure/lib/libssh/Makefile
15 SRCS+=  gss-genr.c
16
17 CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
18 SRCS+=  ssh_namespace.h
19
20 LIBADD= ssh
21
22 .if ${MK_LDNS} != "no"
23 CFLAGS+=        -DHAVE_LDNS=1
24 .endif
25
26 .if ${MK_GSSAPI} != "no" && ${MK_KERBEROS_SUPPORT} != "no"
27 CFLAGS+= -include krb5_config.h
28 SRCS+=  krb5_config.h
29 LIBADD+=        gssapi
30 .endif
31
32 LIBADD+=        crypto
33
34 .if defined(LOCALBASE)
35 CFLAGS+= -DXAUTH_PATH=\"${LOCALBASE}/bin/xauth\"
36 .endif
37
38 .include <bsd.prog.mk>
39
40 .PATH:  ${SSHDIR}