1 1.4 cgd # from: @(#)Makefile 8.2 (Berkeley) 12/15/93 2 1.12 thorpej # $NetBSD: Makefile,v 1.12 2000/06/23 06:01:13 thorpej Exp $ 3 1.12 thorpej 4 1.12 thorpej .include <bsd.own.mk> 5 1.8 thorpej 6 1.11 thorpej LIB= telnet 7 1.11 thorpej SRCS= auth.c encrypt.c genget.c getent.c misc.c 8 1.1 cgd 9 1.12 thorpej CPPFLAGS+= -DHAS_CGETENT 10 1.12 thorpej CPPFLAGS+= -I${.CURDIR} 11 1.12 thorpej 12 1.12 thorpej .if (${MKKERBEROS} != "no") 13 1.11 thorpej SRCS+= enc_des.c kerberos.c 14 1.11 thorpej SRCS+= kerberos5.c 15 1.10 thorpej 16 1.11 thorpej CPPFLAGS+= -DENCRYPTION -DAUTHENTICATION 17 1.11 thorpej CPPFLAGS+= -DKRB4 -DDES_ENCRYPTION 18 1.11 thorpej CPPFLAGS+= -DKRB5 19 1.11 thorpej CPPFLAGS+= -I${DESTDIR}/usr/include/krb5 20 1.10 thorpej CPPFLAGS+= -I${DESTDIR}/usr/include/kerberosIV 21 1.12 thorpej .endif 22 1.1 cgd 23 1.1 cgd .include <bsd.lib.mk> 24