35823e7391
The following scripts are installed: dtruss - a DTrace version of truss. execsnoop - snoop process execution as it occurs. opensnoop - snoop file opens as they occur. procsystime - print process system call time details. ok riastradh
16 lines
321 B
Makefile
16 lines
321 B
Makefile
# $NetBSD: Makefile,v 1.4 2017/09/17 00:00:39 sevan Exp $
|
|
.include <bsd.own.mk>
|
|
|
|
# We need more modular flag e.g. we can add dtrace to osnet later
|
|
|
|
.if (${MKDTRACE} != "no")
|
|
SUBDIR+= dtracetoolkit
|
|
.endif
|
|
|
|
.if ( ${MKZFS} != "no" || ${MKDTRACE} != "no" || ${MKCTF} != "no")
|
|
SUBDIR+= osnet
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|
|
|