Makefile revision 1.15
11.4Scgd# from: @(#)Makefile 8.2 (Berkeley) 12/15/93 21.15Sthorpej# $NetBSD: Makefile,v 1.15 2002/03/22 18:10:21 thorpej Exp $ 31.12Sthorpej 41.12Sthorpej.include <bsd.own.mk> 51.13Slukem 61.13SlukemWARNS?= 1 71.8Sthorpej 81.11SthorpejLIB= telnet 91.11SthorpejSRCS= auth.c encrypt.c genget.c getent.c misc.c 101.1Scgd 111.12SthorpejCPPFLAGS+= -DHAS_CGETENT 121.12SthorpejCPPFLAGS+= -I${.CURDIR} 131.14Sthorpej 141.14Sthorpej# XXX See doc/HACKS gcc-3-libtelnet 151.14Sthorpej.if defined(HAVE_GCC3) 161.14SthorpejCOPTS+= -O0 171.14Sthorpej.endif 181.12Sthorpej 191.15Sthorpej.if (${USE_KERBEROS} != "no") 201.11SthorpejSRCS+= enc_des.c kerberos.c 211.11SthorpejSRCS+= kerberos5.c 221.10Sthorpej 231.11SthorpejCPPFLAGS+= -DENCRYPTION -DAUTHENTICATION 241.11SthorpejCPPFLAGS+= -DKRB4 -DDES_ENCRYPTION 251.11SthorpejCPPFLAGS+= -DKRB5 261.11SthorpejCPPFLAGS+= -I${DESTDIR}/usr/include/krb5 271.10SthorpejCPPFLAGS+= -I${DESTDIR}/usr/include/kerberosIV 281.12Sthorpej.endif 291.1Scgd 301.1Scgd.include <bsd.lib.mk> 31