1 1.23.2.2 thorpej # $NetBSD: Makefile,v 1.23.2.2 2000/06/22 07:09:04 thorpej Exp $ 2 1.23.2.2 thorpej # from: @(#)Makefile 8.2 (Berkeley) 12/15/93 3 1.23.2.2 thorpej 4 1.23.2.2 thorpej MAN= telnetd.8 5 1.23.2.2 thorpej 6 1.23.2.2 thorpej CPPFLAGS+=-DINET6 7 1.23.2.2 thorpej 8 1.23.2.2 thorpej PROG= telnetd 9 1.23.2.2 thorpej CPPFLAGS+=-DLINEMODE -DKLUDGELINEMODE -DUSE_TERMIO -DDIAGNOSTICS -DOPENPTY_PTY 10 1.23.2.2 thorpej CPPFLAGS+=-DOLD_ENVIRON -DENV_HACK -DSECURELOGIN 11 1.23.2.2 thorpej SRCS= authenc.c global.c slc.c state.c sys_term.c telnetd.c \ 12 1.23.2.2 thorpej termstat.c utility.c 13 1.23.2.2 thorpej DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET} 14 1.23.2.2 thorpej LDADD+= -lutil -ltermcap -ltelnet 15 1.23.2.2 thorpej 16 1.23.2.2 thorpej CPPFLAGS+=-DAUTHENTICATION -DENCRYPTION 17 1.23.2.2 thorpej CPPFLAGS+=-I${DESTDIR}/usr/include/krb5 18 1.23.2.2 thorpej CPPFLAGS+=-I${.CURDIR}/../../lib 19 1.23.2.2 thorpej CPPFLAGS+=-DKRB5 20 1.23.2.2 thorpej CPPFLAGS+=-I${.CURDIR} 21 1.23.2.2 thorpej 22 1.23.2.2 thorpej LDADD+= -lkrb5 -lkrb -lcrypto -lasn1 -lcom_err -lroken 23 1.23.2.2 thorpej DPADD+= ${LIBKRB5} ${LIBKRB} ${LIBCRYPTO} ${LIBASN1} ${LIBCOM_ERR} ${LIBROKEN} 24 1.23.2.2 thorpej 25 1.23.2.2 thorpej .include <bsd.prog.mk> 26