Home | History | Annotate | Line # | Download | only in identd
Makefile revision 1.11
      1 # $NetBSD: Makefile,v 1.11 2005/04/03 22:15:32 peter Exp $
      2 
      3 .include <bsd.own.mk>
      4 
      5 WARNS=	4
      6 PROG=	identd
      7 SRCS=	identd.c
      8 MAN=	identd.8
      9 
     10 # Build with IP Filter support?
     11 .if (${MKIPFILTER} != "no")
     12 SRCS+=	ipf.c
     13 CPPFLAGS+=-I${NETBSDSRCDIR}/sys/dist/ipf -DWITH_IPF
     14 .endif
     15 
     16 # Build with pf support?
     17 .if (${MKPF} != "no")
     18 SRCS+=	pf.c
     19 CPPFLAGS+=-DWITH_PF
     20 .endif
     21 
     22 .include <bsd.prog.mk>
     23