Deleted Added
full compact
Makefile (125557) Makefile (126282)
1# $FreeBSD: head/secure/usr.sbin/sshd/Makefile 125557 2004-02-07 08:23:48Z ru $
1# $FreeBSD: head/secure/usr.sbin/sshd/Makefile 126282 2004-02-26 11:26:46Z des $
2#
3
4PROG= sshd
5SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
6 sshpty.c sshlogin.c servconf.c serverloop.c uidswap.c \
7 auth.c auth1.c auth2.c auth-options.c session.c \
8 auth-chall.c auth2-chall.c groupaccess.c \
9 auth-skey.c auth-bsdauth.c auth2-hostbased.c auth2-kbdint.c \
10 auth2-none.c auth2-passwd.c auth2-pubkey.c \
11 monitor_mm.c monitor.c monitor_wrap.c monitor_fdpass.c \
12 kexdhs.c kexgexs.c \
13 auth-krb5.c \
14 auth2-gss.c gss-serv.c gss-serv-krb5.c \
2#
3
4PROG= sshd
5SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
6 sshpty.c sshlogin.c servconf.c serverloop.c uidswap.c \
7 auth.c auth1.c auth2.c auth-options.c session.c \
8 auth-chall.c auth2-chall.c groupaccess.c \
9 auth-skey.c auth-bsdauth.c auth2-hostbased.c auth2-kbdint.c \
10 auth2-none.c auth2-passwd.c auth2-pubkey.c \
11 monitor_mm.c monitor.c monitor_wrap.c monitor_fdpass.c \
12 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-sia.c md5crypt.c
15 loginrec.c auth-pam.c auth-shadow.c auth-sia.c md5crypt.c \
16 gss-genr.c
16MAN= sshd.8 sshd_config.5
17CFLAGS+=-I${SSHDIR}
18
19DPADD= ${LIBSSH} ${LIBUTIL} ${LIBZ} ${LIBWRAP} ${LIBPAM}
20LDADD= -lssh -lutil -lz -lwrap ${MINUSLPAM}
21
22.if !defined(NO_KERBEROS)
23CFLAGS+= -DGSSAPI -DKRB5 -DHEIMDAL

--- 25 unchanged lines hidden ---
17MAN= sshd.8 sshd_config.5
18CFLAGS+=-I${SSHDIR}
19
20DPADD= ${LIBSSH} ${LIBUTIL} ${LIBZ} ${LIBWRAP} ${LIBPAM}
21LDADD= -lssh -lutil -lz -lwrap ${MINUSLPAM}
22
23.if !defined(NO_KERBEROS)
24CFLAGS+= -DGSSAPI -DKRB5 -DHEIMDAL

--- 25 unchanged lines hidden ---