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 ;-)
23 lines
556 B
Makefile
23 lines
556 B
Makefile
# $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
|