xref: /freebsd/secure/usr.sbin/sshd/Makefile (revision 3fc9e2c36555140de248a0b4def91bbfa44d7c2c)
1# $FreeBSD$
2#
3
4.include <bsd.own.mk>
5
6PROG=	sshd
7SRCS=	sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
8	audit.c audit-bsm.c audit-linux.c platform.c \
9	sshpty.c sshlogin.c servconf.c serverloop.c \
10	auth.c auth1.c auth2.c auth-options.c session.c \
11	auth-chall.c auth2-chall.c groupaccess.c \
12	auth-skey.c auth-bsdauth.c auth2-hostbased.c auth2-kbdint.c \
13	auth2-none.c auth2-passwd.c auth2-pubkey.c auth2-jpake.c \
14	monitor_mm.c monitor.c monitor_wrap.c kexdhs.c kexgexs.c kexecdhs.c \
15	auth-krb5.c \
16	auth2-gss.c gss-serv.c gss-serv-krb5.c \
17	loginrec.c auth-pam.c auth-shadow.c auth-sia.c md5crypt.c \
18	sftp-server.c sftp-common.c \
19	roaming_common.c roaming_serv.c \
20	sandbox-null.c sandbox-rlimit.c sandbox-systrace.c sandbox-darwin.c
21
22# gss-genr.c really belongs in libssh; see src/secure/lib/libssh/Makefile
23SRCS+=	gss-genr.c
24
25MAN=	sshd.8 sshd_config.5
26CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
27
28DPADD=	${LIBSSH} ${LIBUTIL} ${LIBZ} ${LIBWRAP} ${LIBPAM}
29LDADD=	-lssh -lutil -lz -lwrap ${MINUSLPAM}
30USEPRIVATELIB= ssh
31
32.if ${MK_AUDIT} != "no"
33CFLAGS+= -DUSE_BSM_AUDIT -DHAVE_GETAUDIT_ADDR
34DPADD+=  ${LIBBSM}
35LDADD+=  -lbsm
36.endif
37
38.if ${MK_KERBEROS_SUPPORT} != "no"
39CFLAGS+= -DGSSAPI -DHAVE_GSSAPI_GSSAPI_H=1 -DHAVE_GSSAPI_GSSAPI_KRB5_H=1 -DKRB5 -DHEIMDAL
40DPADD+=	 ${LIBGSSAPI_KRB5} ${LIBGSSAPI} ${LIBKRB5} ${LIBASN1}
41LDADD+=	 -lgssapi_krb5 -lgssapi -lkrb5 -lasn1
42.endif
43
44.if ${MK_OPENSSH_NONE_CIPHER} != "no"
45CFLAGS+= -DNONE_CIPHER_ENABLED
46.endif
47
48DPADD+=	${LIBCRYPTO} ${LIBCRYPT}
49LDADD+=	-lcrypto -lcrypt
50
51.if defined(LOCALBASE)
52CFLAGS+= -DXAUTH_PATH=\"${LOCALBASE}/bin/xauth\"
53.endif
54
55.include <bsd.prog.mk>
56
57.PATH:	${SSHDIR}
58
59${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h
60