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