blob: b74a98334a320ff872b251c92324f8dc5d498d14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.12 2009/03/16 02:24:56 lukem Exp $
.include <bsd.own.mk>
PROG= identd
SRCS= identd.c
MAN= identd.8
# Build with IP Filter support?
.if (${MKIPFILTER} != "no")
SRCS+= ipf.c
CPPFLAGS+=-I${NETBSDSRCDIR}/sys/dist/ipf -DWITH_IPF
.endif
# Build with pf support?
.if (${MKPF} != "no")
SRCS+= pf.c
CPPFLAGS+=-DWITH_PF
.endif
.include <bsd.prog.mk>
|