a20823e069
to the build system. FreeBSD written scripts are stored in src/share and the toolkit scripts are brought from the cddl directory into a working tree via install. MFC after: 2 weeks
22 lines
295 B
Makefile
22 lines
295 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Hand installing our scripts and optionally (based on MK_CDDL) installing
|
|
# the DTraceToolkit.
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= ${_toolkit}
|
|
|
|
.if ${MK_CDDL} != "no"
|
|
_toolkit= toolkit
|
|
.endif
|
|
|
|
SCRIPTS= nfsclienttime
|
|
|
|
SCRIPTSDIR= ${SHAREDIR}/dtrace/
|
|
|
|
NO_OBJ=
|
|
|
|
.include <bsd.prog.mk>
|