Home | History | Annotate | Line # | Download | only in telnetd
Makefile revision 1.4
      1 #	from: @(#)Makefile	8.2 (Berkeley) 12/15/93
      2 #	$Id: Makefile,v 1.4 1994/02/25 03:20:39 cgd Exp $
      3 
      4 PROG=	telnetd
      5 CFLAGS+=-DLINEMODE -DKLUDGELINEMODE -DUSE_TERMIO -DDIAGNOSTICS
      6 CFLAGS+=-DOLD_ENVIRON -DENV_HACK
      7 SRCS=	authenc.c global.c slc.c state.c sys_term.c telnetd.c \
      8 	termstat.c utility.c
      9 DPADD=	${LIBUTIL} ${LIBTERM}
     10 LDADD=	-lutil -ltermcap -ltelnet
     11 MAN8=	telnetd.0
     12 
     13 # These are the sources that have encryption stuff in them.
     14 CRYPT_SRC= authenc.c ext.h state.c telnetd.c termstat.c
     15 CRYPT_SRC+= utility.c Makefile
     16 NOCRYPT_DIR=${.CURDIR}/Nocrypt
     17 
     18 .include <bsd.prog.mk>
     19 
     20 nocrypt:
     21 	@echo "Encryption code already removed."
     22