Home | History | Annotate | Line # | Download | only in telnetd
Makefile revision 1.21
      1  1.21   thorpej #	$NetBSD: Makefile,v 1.21 1999/07/12 22:06:03 thorpej Exp $
      2   1.4       cgd #	from: @(#)Makefile	8.2 (Berkeley) 12/15/93
      3   1.3   mycroft 
      4  1.21   thorpej SRCTOP=	../..
      5  1.21   thorpej .include <bsd.crypto.mk>
      6  1.13    scottr 
      7  1.12    scottr MAN=	telnetd.8
      8  1.20    itojun 
      9  1.20    itojun CPPFLAGS+=-DINET6
     10  1.12    scottr 
     11   1.1       cgd PROG=	telnetd
     12  1.15     perry CPPFLAGS+=-DLINEMODE -DKLUDGELINEMODE -DUSE_TERMIO -DDIAGNOSTICS -DOPENPTY_PTY
     13  1.21   thorpej CPPFLAGS+=-DOLD_ENVIRON -DENV_HACK -DSECURELOGIN
     14   1.4       cgd SRCS=	authenc.c global.c slc.c state.c sys_term.c telnetd.c \
     15   1.1       cgd 	termstat.c utility.c
     16   1.7  christos DPADD=	${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET}
     17   1.6       jtk LDADD+=	-lutil -ltermcap -ltelnet
     18   1.6       jtk 
     19  1.21   thorpej .if defined(CRYPTOPATH)
     20  1.21   thorpej .include "${CRYPTOPATH}/libexec/telnetd/Makefile.frag"
     21  1.21   thorpej .endif
     22   1.4       cgd 
     23  1.21   thorpej CPPFLAGS+=-I${.CURDIR}
     24   1.4       cgd 
     25  1.21   thorpej .include <bsd.prog.mk>
     26