Home | History | Annotate | Line # | Download | only in npftest
Makefile revision 1.3.2.2
      1      1.3  rmind # $NetBSD: Makefile,v 1.3.2.2 2014/08/20 00:05:11 tls Exp $
      2      1.1  rmind #
      3      1.1  rmind # Public Domain
      4      1.1  rmind #
      5      1.1  rmind 
      6      1.1  rmind PROG=		npftest
      7  1.3.2.2    tls NOMAN=		# no man page
      8  1.3.2.2    tls 
      9  1.3.2.2    tls WARNS=		5
     10  1.3.2.2    tls NOLINT=		# disabled (note: deliberately)
     11      1.1  rmind 
     12      1.2  rmind SRCS=		npftest.c npfstream.c
     13      1.1  rmind CPPFLAGS+=	-I${.CURDIR}
     14      1.1  rmind 
     15      1.1  rmind LIBNPFTEST!=	cd ${.CURDIR}/libnpftest && ${MAKE} -V .OBJDIR
     16      1.1  rmind DPADD+=		${LIBNPFTEST}/libnpftest.a
     17      1.1  rmind LDADD+=		-L${LIBNPFTEST} -lnpftest
     18      1.1  rmind 
     19  1.3.2.2    tls LDADD+=		-lrump -lrumpvfs -lrumpnet -lrumpnet_net
     20  1.3.2.1    tls LDADD+=		-lrumpdev_bpf
     21      1.2  rmind 
     22  1.3.2.2    tls .include <bsd.own.mk>
     23      1.1  rmind 
     24  1.3.2.2    tls .if ${MKSLJIT} != "no"
     25  1.3.2.2    tls LDADD+=		-lrumpkern_sljit -lrumpnet_bpfjit
     26  1.3.2.2    tls .endif
     27  1.3.2.2    tls 
     28  1.3.2.2    tls LDADD+=		-lrumpnet_npf
     29  1.3.2.2    tls 
     30  1.3.2.2    tls LDADD+=		-lpcap -lprop -lpthread
     31      1.1  rmind 
     32      1.1  rmind SUBDIR+=	libnpftest
     33      1.1  rmind 
     34      1.1  rmind ${LIBNPFTEST}/libnpftest.a: all-libnpftest
     35      1.1  rmind 
     36      1.1  rmind .include <bsd.subdir.mk>
     37      1.1  rmind .include <bsd.prog.mk>
     38