xref: /original-bsd/usr.bin/telnet/Makefile (revision 48611f03)
1#
2# Copyright (c) 1990 The Regents of the University of California.
3# All rights reserved.
4#
5# %sccs.include.redist.sh%
6#
7#	@(#)Makefile	5.8 (Berkeley) 04/05/93
8#
9
10PROG=	telnet
11
12CFLAGS+=-DTERMCAP -DKLUDGELINEMODE -DUSE_TERMIO -DAUTHENTICATION -DENCRYPTION
13CFLAGS+=-DENV_HACK
14CFLAGS+=-I${.CURDIR}/../../lib
15
16CFLAGS+= -DKRB4
17
18LDADD=	-ltermcap -ltelnet
19LDADD+=	-lkrb -ldes
20DPADD=	${LIBTERMCAP}
21
22SRCS=	authenc.c commands.c main.c network.c ring.c sys_bsd.c telnet.c \
23	terminal.c tn3270.c utilities.c
24
25.include <bsd.prog.mk>
26