Home | History | Annotate | Line # | Download | only in npfctl
Makefile revision 1.8
      1  1.8     rmind # $NetBSD: Makefile,v 1.8 2012/09/16 13:47:41 rmind Exp $
      2  1.1     rmind 
      3  1.1     rmind PROG=		npfctl
      4  1.2     rmind MAN=		npfctl.8 npf.conf.5
      5  1.1     rmind 
      6  1.6  christos SRCS=		npfctl.c npf_var.c npf_data.c npf_ncgen.c npf_build.c \
      7  1.8     rmind 		npf_extmod.c npf_disassemble.c
      8  1.1     rmind 
      9  1.5     rmind CPPFLAGS+=	-I${.CURDIR}
     10  1.5     rmind SRCS+=		npf_scan.l npf_parse.y
     11  1.5     rmind YHEADER=	1
     12  1.5     rmind 
     13  1.6  christos LDADD+=		-lnpf -lprop -lutil -ly
     14  1.6  christos DPADD+=		${LIBNPF} ${LIBPROP} ${LIBUTIL}
     15  1.1     rmind 
     16  1.8     rmind WARNS=		5
     17  1.8     rmind NOLINT=		# disabled deliberately
     18  1.1     rmind 
     19  1.1     rmind .include <bsd.prog.mk>
     20