[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / libexec / identd

Annotation of src/libexec/identd/Makefile, Revision 1.14

1.14    ! christos    1: # $NetBSD: Makefile,v 1.13 2012/09/15 17:45:35 plunky Exp $
1.1       cgd         2:
1.11      peter       3: .include <bsd.own.mk>
                      4:
1.1       cgd         5: PROG=  identd
1.11      peter       6: SRCS=  identd.c
1.10      christos    7: MAN=   identd.8
1.1       cgd         8:
1.11      peter       9: # Build with IP Filter support?
                     10: .if (${MKIPFILTER} != "no")
                     11: SRCS+= ipf.c
1.13      plunky     12: CPPFLAGS+=-DWITH_IPF
1.11      peter      13: .endif
                     14:
                     15: # Build with pf support?
                     16: .if (${MKPF} != "no")
                     17: SRCS+= pf.c
                     18: CPPFLAGS+=-DWITH_PF
                     19: .endif
                     20:
1.14    ! christos   21: # Build with npf support?
        !            22: .if (${MKNPF} != "no")
        !            23: SRCS+= npf.c
        !            24: CPPFLAGS+=-DWITH_NPF
        !            25: LDADD+=-lnpf
        !            26: DPADD+=${LIBNPF}
        !            27: .endif
        !            28:
1.1       cgd        29: .include <bsd.prog.mk>

CVSweb <webmaster@jp.NetBSD.org>