42e1b6b73d
to keep stuff out of the environment on the way to exec (we already have one in the state machine that keeps them from arriving over the wire, so this should be redundant, but it'll make any further updates easier to have it present). also, RCS Id police.
23 lines
643 B
Makefile
23 lines
643 B
Makefile
# from: @(#)Makefile 8.2 (Berkeley) 12/15/93
|
|
# $NetBSD: Makefile,v 1.6 1996/02/24 01:22:12 jtk Exp $
|
|
|
|
PROG= telnetd
|
|
CFLAGS+=-DLINEMODE -DKLUDGELINEMODE -DUSE_TERMIO -DDIAGNOSTICS
|
|
CFLAGS+=-DOLD_ENVIRON -DENV_HACK -I${.CURDIR}
|
|
SRCS= authenc.c global.c slc.c state.c sys_term.c telnetd.c \
|
|
termstat.c utility.c
|
|
DPADD= ${LIBUTIL} ${LIBTERM}
|
|
LDADD+= -lutil -ltermcap -ltelnet
|
|
MAN= 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:
|
|
@echo "Encryption code already removed."
|