xref: /freebsd/share/dtrace/Makefile (revision b655ec9752ee1da47110c5f0dacc0003ca55a7ad)
1# $FreeBSD$
2#
3# Hand installing our scripts and optionally (based on MK_CDDL) installing
4# the DTraceToolkit.
5#
6
7.include <src.opts.mk>
8
9SUBDIR= ${_toolkit}
10
11.if ${MK_CDDL} != "no"
12_toolkit=	toolkit
13.endif
14
15SCRIPTS=	blocking \
16		disklatency \
17		disklatencycmd \
18		hotopen \
19		nfsattrstats \
20		nfsclienttime \
21		siftr \
22		tcpconn \
23		tcpdebug \
24		tcpstate \
25		tcptrack \
26		udptrack \
27		watch_execve \
28		watch_kill \
29		watch_vop_remove
30
31SCRIPTSDIR= ${SHAREDIR}/dtrace
32
33.include <bsd.prog.mk>
34