Module Name:    src
Committed By:   darran
Date:           Tue Mar  2 20:47:01 UTC 2010

Modified Files:
        src/tools: Makefile

Log Message:
DTrace: add libelf, libdwarf, libctf, and CTF tools to the toolchain,
built when MKDTRACE=yes.


To generate a diff of this commit:
cvs rdiff -u -r1.136 -r1.137 src/tools/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tools/Makefile
diff -u src/tools/Makefile:1.136 src/tools/Makefile:1.137
--- src/tools/Makefile:1.136	Sat Feb 20 00:35:11 2010
+++ src/tools/Makefile	Tue Mar  2 20:47:01 2010
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.136 2010/02/20 00:35:11 joerg Exp $
+#	$NetBSD: Makefile,v 1.137 2010/03/02 20:47:01 darran Exp $
 
 .include <bsd.own.mk>
 
@@ -27,6 +27,14 @@
 TOOLCHAIN_BITS+= .WAIT dbsym mdsetimage
 .endif
 
+DTRACE_BITS=
+.if ${MKDTRACE} != "no"
+DTRACE_BITS+= .WAIT libelf
+DTRACE_BITS+= .WAIT libdwarf
+DTRACE_BITS+= .WAIT libctf 
+DTRACE_BITS+= .WAIT ctfconvert ctfmerge
+.endif
+
 LINT_BITS=
 .if ${MKLINT} != "no"
 LINT_BITS= lint lint2
@@ -45,6 +53,7 @@
 	.WAIT lex \
 	.WAIT pax \
 	.WAIT ${TOOLCHAIN_BITS} \
+	${DTRACE_BITS} \
 		asn1_compile atf-compile cat cksum compile_et config db \
 		file lint1 \
 		makefs menuc mkcsmapper mkesdb mklocale mknod msgc \

Reply via email to