Makefile revision 1.35
11.4Scgd# from: @(#)Makefile 8.2 (Berkeley) 12/15/93 21.35Smatt# $NetBSD: Makefile,v 1.35 2012/03/21 05:37:44 matt Exp $ 31.28Stls 41.28StlsUSE_FORT?= yes # network protocol library 51.17Sitojun 61.29SlukemLIBISPRIVATE= yes 71.12Sthorpej 81.12Sthorpej.include <bsd.own.mk> 91.13Slukem 101.35SmattWARNS?= 5 111.8Sthorpej 121.11SthorpejLIB= telnet 131.11SthorpejSRCS= auth.c encrypt.c genget.c getent.c misc.c 141.1Scgd 151.12SthorpejCPPFLAGS+= -DHAS_CGETENT 161.12SthorpejCPPFLAGS+= -I${.CURDIR} 171.12Sthorpej 181.34Schristos.if ${MKCRYPTO} != "no" 191.18SitojunSRCS+= enc_des.c 201.18SitojunCPPFLAGS+= -DENCRYPTION -DAUTHENTICATION 211.18SitojunCPPFLAGS+= -DDES_ENCRYPTION 221.34Schristos.endif 231.18Sitojun 241.34Schristos.if ${USE_KERBEROS} != "no" 251.11SthorpejSRCS+= kerberos5.c 261.11SthorpejCPPFLAGS+= -DKRB5 271.12Sthorpej.endif 281.17Sitojun 291.27Smrg.if ${USE_PAM} != "no" && ${MKCRYPTO} != "no" 301.24SchristosSRCS+= sra.c pk.c 311.23SchristosCPPFLAGS+= -DSRA 321.23Schristos.endif 331.23Schristos 341.33Smrg.if defined(HAVE_GCC) || defined(HAVE_PCC) 351.26Smrg.for f in auth enc_des kerberos5 pk 361.26SmrgCOPTS.${f}.c+= -Wno-pointer-sign 371.26Smrg.endfor 381.26Smrg.endif 391.26Smrg 401.1Scgd.include <bsd.lib.mk> 41