Module Name: src Committed By: riastradh Date: Sat Mar 30 22:38:03 UTC 2024
Modified Files: src/tools: Makefile Removed Files: src/tools/elftoolchain: Makefile Log Message: tools/elftoolchain: Handle dependencies properly. This should properly resolve the problem christos was trying to address by a bogus make includes hack and #ifdefs in elftoolchain. To generate a diff of this commit: cvs rdiff -u -r1.217 -r1.218 src/tools/Makefile cvs rdiff -u -r1.2 -r0 src/tools/elftoolchain/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.217 src/tools/Makefile:1.218 --- src/tools/Makefile:1.217 Wed Mar 27 05:43:38 2024 +++ src/tools/Makefile Sat Mar 30 22:38:02 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.217 2024/03/27 05:43:38 rillig Exp $ +# $NetBSD: Makefile,v 1.218 2024/03/30 22:38:02 riastradh Exp $ .include <bsd.own.mk> .include <bsd.endian.mk> @@ -59,7 +59,9 @@ TOOLCHAIN_BITS+= dbsym mdsetimage DTRACE_BITS= .if ${MKDTRACE} != "no" || ${MKCTF} != "no" -DTRACE_BITS+= .WAIT elftoolchain +DTRACE_BITS+= .WAIT elftoolchain/common +DTRACE_BITS+= .WAIT elftoolchain/libelf +DTRACE_BITS+= .WAIT elftoolchain/libdwarf DTRACE_BITS+= .WAIT libctf .endif .if ${MKCTF} != "no"