7780c2df6d
* write via libpcap (since i thought there would be some fancy api to deal with endianness. after doing 80% of the work i noticed there wasn't, but went ahead anyway)
16 lines
276 B
Makefile
16 lines
276 B
Makefile
# $NetBSD: Makefile,v 1.2 2011/03/14 11:08:28 pooka Exp $
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SHMIFD= ${NETBSDSRCDIR}/sys/rump/net/lib/libshmif
|
|
.PATH: ${SHMIFD}
|
|
|
|
PROG= shmif_dumpbus
|
|
SRCS+= shmif_dumpbus.c shmif_busops.c
|
|
CPPFLAGS+= -I${SHMIFD}
|
|
|
|
LDADD+= -lpcap
|
|
|
|
.include <bsd.prog.mk>
|