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