Home | History | Annotate | Line # | Download | only in npfd
Makefile revision 1.3
      1  1.3  christos # $NetBSD: Makefile,v 1.3 2016/12/30 19:55:46 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.3  christos #DBG=-g
     10  1.2  christos SRCS=		npfd.c npfd_log.c
     11  1.1     rmind CPPFLAGS+=	-I${.CURDIR}
     12  1.1     rmind 
     13  1.3  christos LDADD+=		-lnpf -lpcap -lutil
     14  1.3  christos DPADD+=		${LIBNPF} ${LIBPCAP} ${LIBUTIL}
     15  1.1     rmind 
     16  1.1     rmind WARNS=		5
     17  1.1     rmind NOLINT=		# disabled deliberately
     18  1.1     rmind 
     19  1.1     rmind .include <bsd.prog.mk>
     20