5341316696
install. While here, sort the list. Differential Revision: D2950 Submitted by: Jason Wolfe <j at nitrology.com> Reviewed by: gnn, markj, hiren Sponsored by: Limelight Networks
31 lines
420 B
Makefile
31 lines
420 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= disklatency \
|
|
disklatencycmd \
|
|
hotopen \
|
|
nfsattrstats \
|
|
nfsclienttime \
|
|
siftr \
|
|
tcpconn \
|
|
tcpstate \
|
|
tcptrack \
|
|
udptrack
|
|
|
|
SCRIPTSDIR= ${SHAREDIR}/dtrace
|
|
|
|
NO_OBJ=
|
|
|
|
.include <bsd.prog.mk>
|