Update build for OpenSSH-5.6.
[dragonfly.git] / secure / usr.sbin / sshd / Makefile
1 # $FreeBSD: src/secure/usr.sbin/sshd/Makefile,v 1.5.2.9 2003/02/03 17:31:12 des Exp $
2 # $DragonFly: src/secure/usr.sbin/sshd/Makefile,v 1.15 2008/09/28 03:19:46 pavalos Exp $
3 #
4
5 PROG=   sshd
6 SRCS=   sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
7         sshpty.c sshlogin.c servconf.c serverloop.c \
8         auth.c auth1.c auth2.c auth-options.c session.c \
9         auth-chall.c auth2-chall.c groupaccess.c \
10         auth-skey.c auth-bsdauth.c auth2-hostbased.c auth2-kbdint.c \
11         auth2-none.c auth2-passwd.c auth2-pubkey.c auth2-jpake.c \
12         monitor_mm.c monitor.c monitor_wrap.c kexdhs.c kexgexs.c \
13         auth-krb5.c \
14         auth2-gss.c gss-serv.c gss-serv-krb5.c \
15         loginrec.c auth-pam.c auth-shadow.c auth-sia.c md5crypt.c \
16         audit.c audit-bsm.c platform.c sftp-server.c sftp-common.c \
17         roaming_common.c roaming_serv.c
18 WARNS?= 0
19
20 # Portability layer
21 SRCS+=  fmt_scaled.c xmmap.c
22 MAN=    sshd.8 sshd_config.5
23
24 # Passwd routine
25 SRCS+=  auth-passwd-freebsd.c
26 CFLAGS+=-DCUSTOM_SYS_AUTH_PASSWD
27
28 # Flags for PAM
29 CFLAGS+=-DUSE_PAM -DHAVE_SECURITY_PAM_APPL_H \
30         -DHAVE_PAM_GETENVLIST -DHAVE_PAM_PUTENV
31
32 LDADD+= -lopie -lmd
33 DPADD+= ${LIBOPIE} ${LIBMD}
34
35 .if defined(X11BASE)
36 CFLAGS+= -DXAUTH_PATH=\"${X11BASE}/bin/xauth\"
37 .endif
38
39 LDADD+= -lcrypt -lutil -lz -lwrap ${MINUSLPAM}
40 DPADD+= ${LIBCRYPT} ${LIBUTIL} ${LIBZ} ${LIBWRAP} ${LIBPAM}
41
42 .include "../../Makefile.ssh.common"
43 .include <bsd.prog.mk>
44
45 .PATH: ${SSHDIR}/openbsd-compat
46