diff options
author | markm <markm@FreeBSD.org> | 1997-09-24 20:37:15 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1997-09-24 20:37:15 +0000 |
commit | 49407ce7992987d3109e86e213121630ef235915 (patch) | |
tree | 31fc49a3011c18c9e07a0f0cda5552333e26ee19 /kerberos5/libexec | |
parent | 5449271204fc8fb794d61db69e85996f702c84a7 (diff) | |
download | FreeBSD-src-49407ce7992987d3109e86e213121630ef235915.zip FreeBSD-src-49407ce7992987d3109e86e213121630ef235915.tar.gz |
Initial import of the new kerberosIV Makefiles.
I will follow up with the userland sources over the next few days.
The impatient of you can play with this, but you do this without
support or blessing until I am finished ;-)
Diffstat (limited to 'kerberos5/libexec')
-rw-r--r-- | kerberos5/libexec/telnetd/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/kerberos5/libexec/telnetd/Makefile b/kerberos5/libexec/telnetd/Makefile new file mode 100644 index 0000000..9301d1b --- /dev/null +++ b/kerberos5/libexec/telnetd/Makefile @@ -0,0 +1,22 @@ +# $Id$ + +# 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} ${LIBKRB} +LDADD= -lutil -ltermcap -L${TELNETOBJDIR} -ltelnet -ldes \ + -L${KRBOBJDIR} -lkrb + +.include <bsd.prog.mk> + +.PATH: ${TELNETDIR}/telnetd |