xref: /freebsd/secure/usr.sbin/sshd/Makefile (revision 2be1a816)
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	sshpty.c sshlogin.c servconf.c serverloop.c \
9	auth.c auth1.c auth2.c auth-options.c session.c \
10	auth-chall.c auth2-chall.c groupaccess.c \
11	auth-skey.c auth-bsdauth.c auth2-hostbased.c auth2-kbdint.c \
12	auth2-none.c auth2-passwd.c auth2-pubkey.c \
13	monitor_mm.c monitor.c monitor_wrap.c kexdhs.c kexgexs.c \
14	auth-krb5.c \
15	auth2-gss.c gss-serv.c gss-serv-krb5.c \
16	loginrec.c auth-pam.c auth-shadow.c auth-sia.c md5crypt.c \
17	audit.c audit-bsm.c platform.c \
18	gss-genr.c
19
20# gss-genr.c really belongs in libssh; see src/secure/lib/libssh/Makefile
21
22MAN=	sshd.8 sshd_config.5
23CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
24
25DPADD=	${LIBSSH} ${LIBUTIL} ${LIBZ} ${LIBWRAP} ${LIBPAM}
26LDADD=	-lssh -lutil -lz -lwrap ${MINUSLPAM}
27
28.if ${MK_AUDIT} != "no"
29CFLAGS+= -DUSE_BSM_AUDIT
30DPADD+=  ${LIBBSM}
31LDADD+=  -lbsm
32.endif
33
34.if ${MK_KERBEROS_SUPPORT} != "no"
35CFLAGS+= -DGSSAPI -DHAVE_GSSAPI_GSSAPI_H=1 -DKRB5 -DHEIMDAL
36DPADD+=	 ${LIBGSSAPI} ${LIBKRB5} ${LIBASN1} ${LIBCOM_ERR} ${LIBROKEN}
37LDADD+=	 -lgssapi -lkrb5 -lasn1 -lcom_err -lroken
38.endif
39
40.if defined(X11BASE)
41# Recommended /etc/make.conf setting is X11BASE=${LOCALBASE} for x.org
42# 7.x upgrade on <= 6.2, but LOCALBASE has moved out of scope of src/
43# so we need to provide the default for users with old make.conf
44# settings.
45LOCALBASE?=	/usr/local
46
47# Users may override either LOCALBASE or X11BASE to move the location
48# of xauth
49X11BASE?=	${LOCALBASE}
50CFLAGS+= -DXAUTH_PATH=\"${X11BASE}/bin/xauth\"
51.endif
52
53DPADD+=	${LIBCRYPTO} ${LIBCRYPT}
54LDADD+=	-lcrypto -lcrypt
55
56.include <bsd.prog.mk>
57
58.PATH:	${SSHDIR}
59
60${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h
61