xref: /netbsd-src/libexec/identd/Makefile (revision b7ae68fde0d8ef1c03714e8bbb1ee7c6118ea93b)
1# $NetBSD: Makefile,v 1.11 2005/04/03 22:15:32 peter Exp $
2
3.include <bsd.own.mk>
4
5WARNS=	4
6PROG=	identd
7SRCS=	identd.c
8MAN=	identd.8
9
10# Build with IP Filter support?
11.if (${MKIPFILTER} != "no")
12SRCS+=	ipf.c
13CPPFLAGS+=-I${NETBSDSRCDIR}/sys/dist/ipf -DWITH_IPF
14.endif
15
16# Build with pf support?
17.if (${MKPF} != "no")
18SRCS+=	pf.c
19CPPFLAGS+=-DWITH_PF
20.endif
21
22.include <bsd.prog.mk>
23