d74d168b0f
compute "len" in the same way in each probe Submitted by: Hannes Mehnert MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D5524
34 lines
490 B
Makefile
34 lines
490 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Hand installing our scripts and optionally (based on MK_CDDL) installing
|
|
# the DTraceToolkit.
|
|
#
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR= ${_toolkit}
|
|
|
|
.if ${MK_CDDL} != "no"
|
|
_toolkit= toolkit
|
|
.endif
|
|
|
|
SCRIPTS= blocking \
|
|
disklatency \
|
|
disklatencycmd \
|
|
hotopen \
|
|
nfsattrstats \
|
|
nfsclienttime \
|
|
siftr \
|
|
tcpconn \
|
|
tcpdebug \
|
|
tcpstate \
|
|
tcptrack \
|
|
udptrack \
|
|
watch_execve \
|
|
watch_kill \
|
|
watch_vop_remove
|
|
|
|
SCRIPTSDIR= ${SHAREDIR}/dtrace
|
|
|
|
.include <bsd.prog.mk>
|