Makefile revision 1.12
11.4Scgd# from: @(#)Makefile 8.2 (Berkeley) 12/15/93 21.12Sthorpej# $NetBSD: Makefile,v 1.12 2000/06/23 06:01:13 thorpej Exp $ 31.12Sthorpej 41.12Sthorpej.include <bsd.own.mk> 51.8Sthorpej 61.11SthorpejLIB= telnet 71.11SthorpejSRCS= auth.c encrypt.c genget.c getent.c misc.c 81.1Scgd 91.12SthorpejCPPFLAGS+= -DHAS_CGETENT 101.12SthorpejCPPFLAGS+= -I${.CURDIR} 111.12Sthorpej 121.12Sthorpej.if (${MKKERBEROS} != "no") 131.11SthorpejSRCS+= enc_des.c kerberos.c 141.11SthorpejSRCS+= kerberos5.c 151.10Sthorpej 161.11SthorpejCPPFLAGS+= -DENCRYPTION -DAUTHENTICATION 171.11SthorpejCPPFLAGS+= -DKRB4 -DDES_ENCRYPTION 181.11SthorpejCPPFLAGS+= -DKRB5 191.11SthorpejCPPFLAGS+= -I${DESTDIR}/usr/include/krb5 201.10SthorpejCPPFLAGS+= -I${DESTDIR}/usr/include/kerberosIV 211.12Sthorpej.endif 221.1Scgd 231.1Scgd.include <bsd.lib.mk> 24