7ec2f6bce5
It helps to reduce complexity with debugging of large ipfw rulesets. Also define several constants and translators, that can by used by dtrace scripts with this probe. Reviewed by: gnn Obtained from: Yandex LLC MFC after: 2 weeks Sponsored by: Yandex LLC Differential Revision: https://reviews.freebsd.org/D26879
31 lines
458 B
Makefile
31 lines
458 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Hand installing our scripts and optionally (based on MK_CDDL) installing
|
|
# the DTraceToolkit.
|
|
#
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SCRIPTS= blocking \
|
|
disklatency \
|
|
disklatencycmd \
|
|
hotopen \
|
|
nfsattrstats \
|
|
nfsclienttime \
|
|
siftr \
|
|
tcpconn \
|
|
tcpdebug \
|
|
tcpstate \
|
|
tcptrack \
|
|
udptrack
|
|
|
|
SCRIPTSDIR= ${SHAREDIR}/dtrace
|
|
|
|
DSRCS= mbuf.d ipfw.d
|
|
|
|
FILES= ${DSRCS}
|
|
FILESDIR= /usr/lib/dtrace
|
|
FILESMODE= ${NOBINMODE}
|
|
|
|
.include <bsd.prog.mk>
|