1 1.13 plunky # $NetBSD: Makefile,v 1.13 2012/09/15 17:45:35 plunky Exp $ 2 1.1 cgd 3 1.11 peter .include <bsd.own.mk> 4 1.11 peter 5 1.1 cgd PROG= identd 6 1.11 peter SRCS= identd.c 7 1.10 christos MAN= identd.8 8 1.1 cgd 9 1.11 peter # Build with IP Filter support? 10 1.11 peter .if (${MKIPFILTER} != "no") 11 1.11 peter SRCS+= ipf.c 12 1.13 plunky CPPFLAGS+=-DWITH_IPF 13 1.11 peter .endif 14 1.11 peter 15 1.11 peter # Build with pf support? 16 1.11 peter .if (${MKPF} != "no") 17 1.11 peter SRCS+= pf.c 18 1.11 peter CPPFLAGS+=-DWITH_PF 19 1.11 peter .endif 20 1.11 peter 21 1.1 cgd .include <bsd.prog.mk> 22