summaryrefslogtreecommitdiff
path: root/secure/libexec/telnetd/Makefile
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1995-06-10 19:44:55 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1995-06-10 19:44:55 +0000
commitfbe312c9f723b704a542825383058d1a2eb63f94 (patch)
tree75a1eed171f3429a80cbd90080a43f6c28efc318 /secure/libexec/telnetd/Makefile
parent6231be0ccfe7ad37d0831269e4499b6be61ea6ba (diff)
Diffstat (limited to 'secure/libexec/telnetd/Makefile')
-rw-r--r--secure/libexec/telnetd/Makefile37
1 files changed, 0 insertions, 37 deletions
diff --git a/secure/libexec/telnetd/Makefile b/secure/libexec/telnetd/Makefile
deleted file mode 100644
index 0bfa3c3f5109..000000000000
--- a/secure/libexec/telnetd/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-# @(#)Makefile 8.2 (Berkeley) 12/15/93
-
-PROG= telnetd
-CFLAGS+=-DLINEMODE -DKLUDGELINEMODE -DUSE_TERMIO -DDIAGNOSTICS
-CFLAGS+=-DOLD_ENVIRON -DENV_HACK
-CFLAGS+=-I${.CURDIR}/../../lib
-#CFLAGS+=-DAUTHENTICATION -DENCRYPTION
-SRCS= authenc.c global.c slc.c state.c sys_term.c telnetd.c \
- termstat.c utility.c
-DPADD= ${LIBUTIL} ${LIBTERMCAP}
-LDADD= -lutil -ltermcap -ltelnet
-#LDADD+= -lkrb -ldes
-MAN8= telnetd.8
-
-# These are the sources that have encryption stuff in them.
-CRYPT_SRC= authenc.c ext.h state.c telnetd.c termstat.c
-CRYPT_SRC+= utility.c Makefile
-NOCRYPT_DIR=${.CURDIR}/Nocrypt
-
-.include <bsd.prog.mk>
-
-nocrypt:
-#ifdef ENCRYPTION
- @for i in ${CRYPT_SRC}; do \
- if [ ! -d ${NOCRYPT_DIR} ]; then \
- echo Creating subdirectory ${NOCRYPT_DIR}; \
- mkdir ${NOCRYPT_DIR}; \
- fi; \
- echo ${NOCRYPT_DIR}/$$i; \
- unifdef -UENCRYPTION ${.CURDIR}/$$i | \
- sed "s/ || defined(ENCRYPTION)//" > ${NOCRYPT_DIR}/$$i; \
- done
-
-placeholder:
-#else /* ENCRYPTION */
- @echo "Encryption code already removed."
-#endif /* ENCRYPTION */