mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
efa0a3f5f5
recursion in a rather ugly way.
18 lines
457 B
Makefile
18 lines
457 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= telnet
|
|
|
|
CFLAGS+= -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} ${LIBCRYPT}
|
|
LDADD= -ltermcap -L${TELNETOBJDIR} -ltelnet -ldes \
|
|
-L${KRBOBJDIR} -lkrb -lcrypt
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${TELNETDIR}/telnet
|