aboutsummaryrefslogtreecommitdiff
path: root/libexec/telnetd/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libexec/telnetd/Makefile')
-rw-r--r--libexec/telnetd/Makefile45
1 files changed, 0 insertions, 45 deletions
diff --git a/libexec/telnetd/Makefile b/libexec/telnetd/Makefile
deleted file mode 100644
index 09136d360a71..000000000000
--- a/libexec/telnetd/Makefile
+++ /dev/null
@@ -1,45 +0,0 @@
-# $FreeBSD$
-
-# Do not define -DKLUDGELINEMODE, as it does not interact well with many
-# telnet implementations.
-
-.include <src.opts.mk>
-
-PACKAGE= telnet
-
-TELNETDIR= ${SRCTOP}/contrib/telnet
-.PATH: ${TELNETDIR}/telnetd
-
-PROG= telnetd
-MAN= telnetd.8
-
-SRCS= global.c slc.c state.c sys_term.c telnetd.c \
- termstat.c utility.c
-
-WARNS?= 2
-WFORMAT?= 0
-
-CFLAGS+= -DLINEMODE -DUSE_TERMIO -DDIAGNOSTICS -DOLD_ENVIRON \
- -DENV_HACK -DSTREAMSPTY
-
-.if ${MK_INET6_SUPPORT} != "no"
-CFLAGS+= -DINET6
-.endif
-
-CFLAGS+= -I${TELNETDIR}
-CFLAGS+= -I${TELNETDIR}/telnet
-
-LIBADD= telnet util tinfow
-
-.if ${MK_OPENSSL} != "no"
-SRCS+= authenc.c
-CFLAGS+= -DAUTHENTICATION -DENCRYPTION
-LIBADD+= mp crypto pam
-.endif
-
-.if ${MK_KERBEROS_SUPPORT} != "no"
-CFLAGS+= -DKRB5 -DFORWARD -Dnet_write=telnet_net_write
-LIBADD+= krb5 roken
-.endif
-
-.include <bsd.prog.mk>