Home | History | Annotate | Line # | Download | only in npfd
Makefile revision 1.2
      1  1.2  christos # $NetBSD: Makefile,v 1.2 2016/12/28 01:25:48 christos Exp $
      2  1.1     rmind #
      3  1.1     rmind # Public Domain
      4  1.1     rmind #
      5  1.1     rmind 
      6  1.2  christos NOMAN=
      7  1.1     rmind PROG=		npfd
      8  1.1     rmind 
      9  1.2  christos SRCS=		npfd.c npfd_log.c
     10  1.1     rmind CPPFLAGS+=	-I${.CURDIR}
     11  1.1     rmind 
     12  1.1     rmind LDADD+=		-lnpf -lpcap
     13  1.1     rmind DPADD+=		${LIBNPF} ${LIBPCAP}
     14  1.1     rmind 
     15  1.1     rmind WARNS=		5
     16  1.1     rmind NOLINT=		# disabled deliberately
     17  1.1     rmind 
     18  1.1     rmind .include <bsd.prog.mk>
     19