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