aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.bin
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2002-04-13 11:00:52 +0000
committerMark Murray <markm@FreeBSD.org>2002-04-13 11:00:52 +0000
commitca271c4ea11cc81ab3cccba972761db9436bbd91 (patch)
tree382575c310dbeded758380f12f8c7fc0717bd87c /secure/usr.bin
parent0ea52019e8d2559da70c852894b99068a00751c8 (diff)
Notes
Diffstat (limited to 'secure/usr.bin')
-rw-r--r--secure/usr.bin/telnet/Makefile20
1 files changed, 11 insertions, 9 deletions
diff --git a/secure/usr.bin/telnet/Makefile b/secure/usr.bin/telnet/Makefile
index 515385234568..74cf075d18d9 100644
--- a/secure/usr.bin/telnet/Makefile
+++ b/secure/usr.bin/telnet/Makefile
@@ -2,17 +2,19 @@
PROG= telnet
-CFLAGS+= -DKLUDGELINEMODE -DUSE_TERMIO -DENV_HACK -DSKEY \
- -DENCRYPTION -DAUTHENTICATION -I${TELNETDIR}
-CFLAGS+= -DIPSEC -DINET6
-
SRCS= authenc.c commands.c main.c network.c ring.c sys_bsd.c \
- telnet.c terminal.c tn3270.c utilities.c
+ telnet.c terminal.c utilities.c
+
+CFLAGS+= -DKLUDGELINEMODE -DUSE_TERMIO -DENV_HACK -DOPIE \
+ -DENCRYPTION -DAUTHENTICATION -DIPSEC -DINET6 \
+ -I${TELNETDIR} -I${TELNETDIR}/libtelnet/
+
+WARNS?= 2
-DPADD= ${LIBTERMCAP} ${LIBTELNET} ${LIBCRYPTO} ${LIBCRYPT} ${LIBMP}
-DPADD+= ${LIBIPSEC}
-LDADD= -ltermcap -L${TELNETOBJDIR} -ltelnet -lcrypto -lcrypt -lmp
-LDADD+= -lipsec -lpam
+DPADD= ${LIBTERMCAP} ${LIBTELNET} ${LIBMP} \
+ ${LIBCRYPTO} ${LIBCRYPT} ${LIBIPSEC} ${LIBPAM}
+LDADD= -ltermcap ${LIBTELNET} -lmp \
+ -lcrypto -lcrypt -lipsec ${MINUSLPAM}
.include <bsd.prog.mk>