]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - secure/usr.bin/ssh/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / secure / usr.bin / ssh / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 PROG=   ssh
6 CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
7 LINKS=  ${BINDIR}/ssh ${BINDIR}/slogin
8 MAN=    ssh.1 ssh_config.5
9 MLINKS= ssh.1 slogin.1
10
11 SRCS=   ssh.c readconf.c clientloop.c sshtty.c \
12         sshconnect.c sshconnect1.c sshconnect2.c mux.c \
13         roaming_common.c roaming_client.c
14
15 # gss-genr.c really belongs in libssh; see src/secure/lib/libssh/Makefile
16 SRCS+=  gss-genr.c
17
18 DPADD=  ${LIBSSH} ${LIBUTIL}
19 LDADD=  -lssh -lutil
20 USEPRIVATELIB= ssh
21
22 .if ${MK_LDNS} != "no"
23 CFLAGS+=        -DHAVE_LDNS=1
24 DPADD+= ${LIBLDNS}
25 LDADD+= -lldns
26 USEPRIVATELIB+= ldns
27 .endif
28
29 .if ${MK_KERBEROS_SUPPORT} != "no"
30 CFLAGS+= -include krb5_config.h
31 DPADD+=  ${LIBGSSAPI}
32 LDADD+=  -lgssapi
33 .endif
34
35 .if ${MK_OPENSSH_NONE_CIPHER} != "no"
36 CFLAGS+= -DNONE_CIPHER_ENABLED
37 .endif
38
39 DPADD+= ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ}
40 LDADD+= -lcrypt -lcrypto -lz
41
42 .if defined(LOCALBASE)
43 CFLAGS+= -DXAUTH_PATH=\"${LOCALBASE}/bin/xauth\"
44 .endif
45
46 .include <bsd.prog.mk>
47
48 .PATH:  ${SSHDIR}
49
50 ${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h
51 .if ${MK_KERBEROS_SUPPORT} != "no"
52 ${OBJS} ${POBJS} ${SOBJS}: krb5_config.h
53 .endif