2005-04-04 02:15:32 +04:00
|
|
|
# $NetBSD: Makefile,v 1.11 2005/04/03 22:15:32 peter Exp $
|
1994-02-05 00:41:32 +03:00
|
|
|
|
2005-04-04 02:15:32 +04:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
|
|
|
WARNS= 4
|
1994-02-05 00:41:32 +03:00
|
|
|
PROG= identd
|
2005-04-04 02:15:32 +04:00
|
|
|
SRCS= identd.c
|
2004-02-01 00:47:17 +03:00
|
|
|
MAN= identd.8
|
1994-02-05 00:41:32 +03:00
|
|
|
|
2005-04-04 02:15:32 +04:00
|
|
|
# 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
|
|
|
|
|
1994-02-05 00:41:32 +03:00
|
|
|
.include <bsd.prog.mk>
|