From 164d339617804a3cce0a539f0c5fe3c9af30f59b Mon Sep 17 00:00:00 2001 From: markm Date: Mon, 11 Mar 1996 06:22:50 +0000 Subject: Fix typo #ifdef -> .if defined(). Tidy uo this file a bit. --- secure/lib/libtelnet/Makefile | 27 +++++++-------------------- 1 file changed, 7 insertions(+), 20 deletions(-) (limited to 'secure') diff --git a/secure/lib/libtelnet/Makefile b/secure/lib/libtelnet/Makefile index 631cd8a..d8df7be 100644 --- a/secure/lib/libtelnet/Makefile +++ b/secure/lib/libtelnet/Makefile @@ -1,43 +1,30 @@ # From: @(#)Makefile 8.2 (Berkeley) 12/15/93 -# $Id: Makefile,v 1.12 1996/03/09 13:36:34 ache Exp $ +# $Id$ LIB= telnet SRCS= encrypt.c genget.c getent.c misc.c CFLAGS+= -DHAS_CGETENT -#ifdef ENCRYPTION +.if defined(MAKE_EBONES) CFLAGS+= -DENCRYPTION -.if exists(${DESTDIR}/usr/lib/libkrb.a) && (defined(MAKE_EBONES) \ - || defined(MAKE_KERBEROS)) +.if exists(${DESTDIR}/usr/lib/libkrb.a) && defined(MAKE_EBONES) CFLAGS+= -DDES_ENCRYPTION -DAUTHENTICATION CFLAGS+= -DKRB4 -I/usr/include/kerberosIV # KRB4_ENCPWD not yet defined -#CFLAGS+= -DKRB4_ENCPWD SRCS+= auth.c kerberos.c enc_des.c -# KRB4_ENCPWD not yet defined -#SRCS+= krb4encpwd.c read_password.c LDADD+= -ldes -lkrb DPADD+= ${LIBDES} ${LIBKRB} .endif -#.if exists(${DESTDIR}/usr/lib/libkrb5.a) && (defined(MAKE_EBONES) \ -# || defined(MAKE_KERBEROS)) -#CFLAGS+= -DDES_ENCRYPTION -DAUTHENTICATION -#CFLAGS+= -DKRB5 -DFORWARD -#SRCS+= auth.c kerberos5.c forward.c enc_des.c -#LDADD+= -ldes -lkrb5 -#DPADD+= ${LIBDES} -#.endif - # Not Yet #SRCS += spx.c rsaencpwd.c read_password.c # Used only in krb4encpwd.c and rsaencpwd.c, not yet active #LDADD+= -ldescrypt -#endif /* ENCRYPTION */ +.endif /* ENCRYPTION */ # These are the sources that have encryption stuff in them. CRYPT_SRC= auth.c enc-proto.h enc_des.c encrypt.c @@ -48,7 +35,7 @@ NOCRYPT_DIR=${.CURDIR}/Nocrypt .include nocrypt: -#ifdef ENCRYPTION +.if defined(ENCRYPTION) @for i in ${CRYPT_SRC}; do \ if [ ! -d ${NOCRYPT_DIR} ]; then \ echo Creating subdirectory ${NOCRYPT_DIR}; \ @@ -60,6 +47,6 @@ nocrypt: done placeholder: -#else /* ENCRYPTION */ +.else @echo "Encryption code already removed." -#endif /* ENCRYPTION */ +.endif -- cgit v1.1