18849b5da0
The DTraceToolkit is part of the Open DTrace effort and is supported on FreeBSD as a port (sysutils/DTraceToolkit) which has been updated to properly track toolkit development upstream. Sponsored by: DARPA, AFRL
34 lines
504 B
Makefile
34 lines
504 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 \
|
|
watch_execve \
|
|
watch_kill \
|
|
watch_vop_remove
|
|
|
|
SCRIPTSDIR= ${SHAREDIR}/dtrace
|
|
|
|
DSRCS= mbuf.d
|
|
|
|
FILES= ${DSRCS}
|
|
FILESDIR= /usr/lib/dtrace
|
|
FILESMODE= ${NOBINMODE}
|
|
|
|
.include <bsd.prog.mk>
|