diff options
author | Hans Insulander <hin@cvs.openbsd.org> | 2003-05-14 01:46:52 +0000 |
---|---|---|
committer | Hans Insulander <hin@cvs.openbsd.org> | 2003-05-14 01:46:52 +0000 |
commit | 741afc51eec5b3a91ba4ec075951602e79d51ae5 (patch) | |
tree | d1c51f57e69db58353edb9a4f68e5039f5b899e0 /usr.bin/tn3270 | |
parent | b0c8958fa6357ca1847ee139b4753c4ad3639999 (diff) |
Get rid of libtelnet, it is compiled into the tree programs
(telnetd, telnet and tn3270) that use them instead.
This gets rid of a really hairy dependency between telnet and libtelnet.
ok millert@
Diffstat (limited to 'usr.bin/tn3270')
-rw-r--r-- | usr.bin/tn3270/tn3270/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/usr.bin/tn3270/tn3270/Makefile b/usr.bin/tn3270/tn3270/Makefile index 4b09e806615..d62b6b58ed4 100644 --- a/usr.bin/tn3270/tn3270/Makefile +++ b/usr.bin/tn3270/tn3270/Makefile @@ -1,12 +1,14 @@ -# $OpenBSD: Makefile,v 1.13 2000/10/11 19:28:02 millert Exp $ +# $OpenBSD: Makefile,v 1.14 2003/05/14 01:46:51 hin Exp $ .include "../../Makefile.inc" +.PATH: ${.CURDIR}/../../../libexec/telnetd + CFLAGS += -I${.CURDIR} -I. -CFLAGS +=-I${.CURDIR}/../../../lib +CFLAGS +=-I${.CURDIR}/../../../libexec/telnetd CFLAGS +=-I${.CURDIR}/../../telnet -LDADD += -lcurses -ltelnet -DPADD += ${LIBCURSES} ${LIBTELNET} +LDADD += -lcurses +DPADD += ${LIBCURSES} SRCS += apilib.c api_bsd.c api_exch.c asc_ebc.c astosc.c dctype.c SRCS += disp_asc.c ebc_disp.c @@ -15,6 +17,7 @@ SRCS += api.c function.c inbound.c oia.c options.c outbound.c SRCS += genbsubs.c globals.c system.c termout.c SRCS += commands.c main.c network.c ring.c sys_bsd.c telnet.c terminal.c SRCS += tn3270.c utilities.c +SRCS += auth.c encrypt.c genget.c misc.c # this and the dependency hacks below to make 'depend' target # work right... |