NetBSD/libexec/identd/Makefile

22 lines
339 B
Makefile

# $NetBSD: Makefile,v 1.13 2012/09/15 17:45:35 plunky 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+=-DWITH_IPF
.endif
# Build with pf support?
.if (${MKPF} != "no")
SRCS+= pf.c
CPPFLAGS+=-DWITH_PF
.endif
.include <bsd.prog.mk>