freebsd_amp_hwpstate/crypto/openssh/sshd/Makefile

57 lines
1.3 KiB
Makefile
Raw Normal View History

2002-06-23 14:01:54 +00:00
# $OpenBSD: Makefile,v 1.51 2002/06/20 19:56:07 stevesk Exp $
2000-02-24 14:29:47 +00:00
.PATH: ${.CURDIR}/..
PROG= sshd
BINOWN= root
BINMODE=555
BINDIR= /usr/sbin
2002-06-23 14:01:54 +00:00
MAN= sshd.8 sshd_config.5
2002-03-18 09:55:03 +00:00
CFLAGS+=-DHAVE_LOGIN_CAP -DBSD_AUTH
2000-02-24 14:29:47 +00:00
SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
2002-06-23 14:01:54 +00:00
sshpty.c sshlogin.c servconf.c serverloop.c uidswap.c \
auth.c auth1.c auth2.c auth-options.c session.c \
2002-03-18 09:55:03 +00:00
auth-chall.c auth2-chall.c groupaccess.c \
2002-06-23 14:01:54 +00:00
auth-skey.c auth-bsdauth.c monitor_mm.c monitor.c \
auth2-none.c auth2-passwd.c auth2-pubkey.c \
auth2-hostbased.c auth2-kbdint.c
2000-02-24 14:29:47 +00:00
.include <bsd.own.mk> # for KERBEROS and AFS
2002-03-18 09:55:03 +00:00
.if (${KERBEROS5:L} == "yes")
CFLAGS+=-DKRB5 -I${DESTDIR}/usr/include/kerberosV
SRCS+= auth-krb5.c
LDADD+= -lkrb5 -lkafs -lasn1 -lcom_err
2002-06-23 14:01:54 +00:00
DPADD+= ${LIBKRB5} ${LIBKAFS} ${LIBASN1} ${LIBCOM_ERR}
2002-03-18 09:55:03 +00:00
.endif # KERBEROS5
.if (${KERBEROS:L} == "yes")
.if (${AFS:L} == "yes")
2000-02-24 14:29:47 +00:00
CFLAGS+= -DAFS
LDADD+= -lkafs
2002-06-23 14:01:54 +00:00
DPADD+= ${LIBKAFS}
2000-02-24 14:29:47 +00:00
.endif # AFS
CFLAGS+= -DKRB4 -I${DESTDIR}/usr/include/kerberosIV
SRCS+= auth-krb4.c
LDADD+= -lkrb
DPADD+= ${LIBKRB}
2000-02-24 14:29:47 +00:00
.endif # KERBEROS
.include <bsd.prog.mk>
2002-03-18 09:55:03 +00:00
LDADD+= -lcrypto -lutil -lz -ldes
2002-06-23 14:01:54 +00:00
DPADD+= ${LIBCRYPTO} ${LIBUTIL} ${LIBZ} ${LIBDES}
2000-02-24 14:29:47 +00:00
.if (${TCP_WRAPPERS:L} == "yes")
2000-02-24 14:29:47 +00:00
CFLAGS+= -DLIBWRAP
LDADD+= -lwrap
DPADD+= ${LIBWRAP}
.endif
2002-03-18 09:55:03 +00:00
#.if (${SKEY:L} == "yes")
#CFLAGS+= -DSKEY
#LDADD+= -lskey
#DPADD+= ${SKEY}
#.endif