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