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