79ac3c12a7
While dtrace is usefull some people might not want it. Differential Revision: https://reviews.freebsd.org/D30752 Sponsored by: Diablotin Systems
32 lines
474 B
Makefile
32 lines
474 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Hand installing our scripts and optionally (based on MK_CDDL) installing
|
|
# the DTraceToolkit.
|
|
#
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= dtrace
|
|
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>
|