1 1.23 thorpej # $NetBSD: Makefile,v 1.23 2000/06/20 06:00:35 thorpej Exp $ 2 1.4 cgd # from: @(#)Makefile 8.2 (Berkeley) 12/15/93 3 1.3 mycroft 4 1.23 thorpej DIST= ${.CURDIR}/../../crypto/dist 5 1.23 thorpej .PATH: ${DIST}/heimdal/appl/telnet/telnetd .DOTLAST 6 1.23 thorpej 7 1.23 thorpej # XXX XXX XXX 8 1.23 thorpej WARNS=0 9 1.13 scottr 10 1.12 scottr MAN= telnetd.8 11 1.20 itojun 12 1.20 itojun CPPFLAGS+=-DINET6 13 1.12 scottr 14 1.1 cgd PROG= telnetd 15 1.15 perry CPPFLAGS+=-DLINEMODE -DKLUDGELINEMODE -DUSE_TERMIO -DDIAGNOSTICS -DOPENPTY_PTY 16 1.21 thorpej CPPFLAGS+=-DOLD_ENVIRON -DENV_HACK -DSECURELOGIN 17 1.4 cgd SRCS= authenc.c global.c slc.c state.c sys_term.c telnetd.c \ 18 1.1 cgd termstat.c utility.c 19 1.7 christos DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET} 20 1.6 jtk LDADD+= -lutil -ltermcap -ltelnet 21 1.6 jtk 22 1.23 thorpej CPPFLAGS+= -I${DIST}/heimdal/appl/telnet 23 1.23 thorpej CPPFLAGS+= -I${.CURDIR}/../../include/heimdal 24 1.23 thorpej CPPFLAGS+= -I${DESTDIR}/usr/include/kerberosIV 25 1.23 thorpej CPPFLAGS+= -I${DESTDIR}/usr/include/krb5 26 1.23 thorpej CPPFLAGS+= -I${DESTDIR}/usr/include/openssl 27 1.23 thorpej CPPFLAGS+= -DHAVE_CONFIG_H 28 1.23 thorpej 29 1.23 thorpej LDADD+= -lkrb5 -lkrb -lcrypto -lasn1 -lcom_err -lroken 30 1.4 cgd 31 1.21 thorpej CPPFLAGS+=-I${.CURDIR} 32 1.4 cgd 33 1.21 thorpej .include <bsd.prog.mk> 34