NetBSD/libexec/identd/Makefile
lukem 500db00274 Default to WARNS=4
Exceptions that need a lower level are:
	getty ld.elf_so lfs_cleanerd makewhatis telnetd tftpd
	hpropd ipropd-master ipropd-slave kadmind kpasswdd
2009-03-16 02:24:55 +00:00

22 lines
369 B
Makefile

# $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>