5f6559a29b
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 ;-)
18 lines
438 B
Makefile
18 lines
438 B
Makefile
# $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
|