diff options
| author | Mark Murray <markm@FreeBSD.org> | 1999-10-07 19:47:09 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 1999-10-07 19:47:09 +0000 |
| commit | d14fc57cb7bc329a1510b2b84836a7942f4b9308 (patch) | |
| tree | ff278696bb59004ab271c28cd32ca54383d97d4f /secure/libexec/telnetd | |
| parent | f3e63a297725ac5bd2409b66b2487544545e1be0 (diff) | |
Notes
Diffstat (limited to 'secure/libexec/telnetd')
| -rw-r--r-- | secure/libexec/telnetd/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/secure/libexec/telnetd/Makefile b/secure/libexec/telnetd/Makefile new file mode 100644 index 0000000000000..230e4e79bf539 --- /dev/null +++ b/secure/libexec/telnetd/Makefile @@ -0,0 +1,22 @@ +# $FreeBSD$ + +# Do not define -DKLUDGELINEMODE, as it does not interact well with many +# telnet implementations. + +PROG= telnetd +MAN8= telnetd.8 + +CFLAGS+= -DLINEMODE -DUSE_TERMIO -DDIAGNOSTICS -DOLD_ENVIRON \ + -DENV_HACK -DAUTHENTICATION -DENCRYPTION \ + -I${TELNETDIR} + +SRCS= global.c slc.c state.c sys_term.c telnetd.c \ + termstat.c utility.c authenc.c + +DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET} ${LIBDES} ${LIBMP} \ + ${LIBCRYPT} +LDADD= -lutil -ltermcap -L${TELNETOBJDIR} -ltelnet -ldes -lcrypt -lmp + +.include <bsd.prog.mk> + +.PATH: ${TELNETDIR}/telnetd |
