xref: /netbsd-src/libexec/identd/Makefile (revision 179b12252ecaf3553d9c2b7458ce62b6a2203d0c)
1# $NetBSD: Makefile,v 1.12 2009/03/16 02:24:56 lukem 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+=-I${NETBSDSRCDIR}/sys/dist/ipf -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