[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / lib / libtelnet

File: [local] / src / lib / libtelnet / Attic / Makefile (download)

Revision 1.4, Sun Sep 3 18:41:14 2000 UTC (23 years, 9 months ago) by espie
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9, OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.3: +3 -3 lines

Boring...  Add :L modifier to all tweakable variables tests.

Closes PR 1246

#	from: @(#)Makefile	8.2 (Berkeley) 12/15/93
#	$OpenBSD: Makefile,v 1.4 2000/09/03 18:41:14 espie Exp $
#	$NetBSD: Makefile,v 1.6 1996/02/24 01:15:15 jtk Exp $

LIB=	telnet
SRCS=	auth.c encrypt.c genget.c getent.c misc.c

CFLAGS+= -DHAS_CGETENT

.include <bsd.own.mk> # for KERBEROS

.if (${KERBEROS:L} == "yes")
CFLAGS+= -DKRB4 -DAUTHENTICATION -DENCRYPTION -DDES_ENCRYPTION
SRCS+= kerberos.c enc_des.c
.endif

# XXX this has not been tested due to lack of kerberos5 to test with.
.if (${KERBEROS5:L} == "yes")
CFLAGS+= -DKRB5 -DAUTHENTICATION -DENCRYPTION -DDES_ENCRYPTION
SRCS+= kerberos5.c enc_des.c
.endif

.include <bsd.lib.mk>