Makefile revision 1.17
11.17Srmind# $NetBSD: Makefile,v 1.17 2018/09/29 14:41:37 rmind Exp $ 21.1Scgd 31.11Speter.include <bsd.own.mk> 41.11Speter 51.1ScgdPROG= identd 61.11SpeterSRCS= identd.c 71.10SchristosMAN= identd.8 81.1Scgd 91.11Speter# Build with IP Filter support? 101.11Speter.if (${MKIPFILTER} != "no") 111.11SpeterSRCS+= ipf.c 121.13SplunkyCPPFLAGS+=-DWITH_IPF 131.11Speter.endif 141.11Speter 151.11Speter# Build with pf support? 161.11Speter.if (${MKPF} != "no") 171.11SpeterSRCS+= pf.c 181.11SpeterCPPFLAGS+=-DWITH_PF 191.11Speter.endif 201.11Speter 211.14Schristos# Build with npf support? 221.14Schristos.if (${MKNPF} != "no") 231.14SchristosSRCS+= npf.c 241.14SchristosCPPFLAGS+=-DWITH_NPF 251.17Srmind 261.17SrmindPROGDPLIBS+= nv ${NETBSDSRCDIR}/external/bsd/libnv/lib 271.17SrmindCPPFLAGS+= -I ${NETBSDSRCDIR}/sys/external/bsd/libnv/dist 281.17Srmind 291.17SrmindLDADD+=-lnpf 301.17SrmindDPADD+=${LIBNPF} 311.14Schristos.endif 321.14Schristos 331.16Smrg# XXX 341.16SmrgCOPTS+= -fno-strict-aliasing 351.16Smrg 361.1Scgd.include <bsd.prog.mk> 37