Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tools Exclude more subdirs if TOOLS_BUILDRUMP=yes.



details:   https://anonhg.NetBSD.org/src/rev/2b777a152451
branches:  trunk
changeset: 459803:2b777a152451
user:      bad <bad%NetBSD.org@localhost>
date:      Thu Sep 26 09:21:34 2019 +0000

description:
Exclude more subdirs if TOOLS_BUILDRUMP=yes.

Exclude subdirs added in the last 3 years but not need for rumpkernel builds.

diffstat:

 tools/Makefile |  13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)

diffs (35 lines):

diff -r 6e945216e306 -r 2b777a152451 tools/Makefile
--- a/tools/Makefile    Thu Sep 26 08:16:26 2019 +0000
+++ b/tools/Makefile    Thu Sep 26 09:21:34 2019 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.203 2019/05/07 10:22:54 hannken Exp $
+#      $NetBSD: Makefile,v 1.204 2019/09/26 09:21:34 bad Exp $
 
 .include <bsd.own.mk>
 .include <bsd.endian.mk>
@@ -100,10 +100,10 @@
                makewhatis mtree nbperf .WAIT uudecode
 .endif
 
-SUBDIR+= cat rpcgen join lorder m4 mkdep tsort xz-include .WAIT yacc .WAIT awk .WAIT lex
-SUBDIR+= grep xz-lib pax .WAIT libprop
+SUBDIR+= cat rpcgen join lorder m4 mkdep tsort .WAIT yacc .WAIT awk .WAIT lex
+.if ${TOOLS_BUILDRUMP} == "no"
+SUBDIR+= xz-include .WAIT grep xz-lib pax .WAIT libprop
 
-.if ${TOOLS_BUILDRUMP} == "no"
 SUBDIR += .WAIT texinfo \
        .WAIT tic \
        .WAIT ${TOOLCHAIN_BITS} \
@@ -118,7 +118,10 @@
                .WAIT installboot \
                pwd_mkdb strfile sunlabel vgrind zic
 .endif
-SUBDIR+= stat .WAIT config xz-bin
+SUBDIR+= stat .WAIT config
+.if ${TOOLS_BUILDRUMP} == "no"
+SUBDIR+= xz-bin
+.endif
 
 .if ${MKLLVM} != "no" || ${MKLLVMRT} != "no"
 SUBDIR+= \



Home | Main Index | Thread Index | Old Index