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 ;-)
This commit is contained in:
markm 1997-09-24 20:37:15 +00:00
parent 5449271204
commit 49407ce799
3 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,14 @@
# $Id$
LIB= telnet
SRCS= genget.c getent.c misc.c encrypt.c auth.c kerberos.c enc_des.c
CFLAGS+= -DHAS_CGETENT -DENCRYPTION -DDES_ENCRYPTION -DAUTHENTICATION \
-DKRB4 -I${TELNETDIR}
INCLUDES= ${TELNETDIR}/arpa/telnet.h
.include <bsd.lib.mk>
.PATH: ${TELNETDIR}/libtelnet

View File

@ -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

View File

@ -0,0 +1,17 @@
# $Id$
PROG= telnet
CFLAGS+= -DTERMCAP -DKLUDGELINEMODE -DUSE_TERMIO -DENV_HACK -DSKEY \
-DENCRYPTION -DAUTHENTICATION -DKRB4 \
-I${TELNETDIR}
SRCS= authenc.c commands.c main.c network.c ring.c sys_bsd.c \
telnet.c terminal.c tn3270.c utilities.c
DPADD= ${LIBTERMCAP} ${LIBTELNET} ${LIBDES} ${LIBKRB}
LDADD= -ltermcap -L${TELNETOBJDIR} -ltelnet -ldes -L${KRBOBJDIR} -lkrb
.include <bsd.prog.mk>
.PATH: ${TELNETDIR}/telnet