xref: /freebsd/share/dtrace/Makefile (revision 65b71c48d226f3ef3eb1c4452dccc678a7d2ac96)
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=	disklatency \
16		disklatencycmd \
17		hotopen \
18		nfsattrstats \
19		nfsclienttime \
20		siftr \
21		tcpconn \
22		tcpstate \
23		tcptrack \
24		udptrack
25
26SCRIPTSDIR= ${SHAREDIR}/dtrace
27
28NO_OBJ=
29
30.include <bsd.prog.mk>
31