Module Name:    src
Committed By:   lukem
Date:           Tue May 23 20:20:54 UTC 2023

Modified Files:
        src/share/mk: bsd.own.mk
        src/tools/compat: Makefile

Log Message:
tools/compat: MAKEVERBOSE support in regen


To generate a diff of this commit:
cvs rdiff -u -r1.1325 -r1.1326 src/share/mk/bsd.own.mk
cvs rdiff -u -r1.90 -r1.91 src/tools/compat/Makefile

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

Modified files:

Index: src/share/mk/bsd.own.mk
diff -u src/share/mk/bsd.own.mk:1.1325 src/share/mk/bsd.own.mk:1.1326
--- src/share/mk/bsd.own.mk:1.1325	Mon May 22 12:55:45 2023
+++ src/share/mk/bsd.own.mk	Tue May 23 20:20:54 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: bsd.own.mk,v 1.1325 2023/05/22 12:55:45 lukem Exp $
+#	$NetBSD: bsd.own.mk,v 1.1326 2023/05/23 20:20:54 lukem Exp $
 
 # This needs to be before bsd.init.mk
 .if defined(BSD_MK_COMPAT_FILE)
@@ -1740,6 +1740,7 @@ _MKMSG_INSTALL?=	${_MKMSG} "install "
 _MKMSG_LINK?=		${_MKMSG} "   link "
 _MKMSG_LEX?=		${_MKMSG} "    lex "
 _MKMSG_REMOVE?=		${_MKMSG} " remove "
+_MKMSG_REGEN?=		${_MKMSG} "  regen "
 _MKMSG_YACC?=		${_MKMSG} "   yacc "
 
 _MKSHMSG_CREATE?=	${_MKSHMSG} " create "

Index: src/tools/compat/Makefile
diff -u src/tools/compat/Makefile:1.90 src/tools/compat/Makefile:1.91
--- src/tools/compat/Makefile:1.90	Sat Sep 18 01:47:10 2021
+++ src/tools/compat/Makefile	Tue May 23 20:20:54 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.90 2021/09/18 01:47:10 christos Exp $
+#	$NetBSD: Makefile,v 1.91 2023/05/23 20:20:54 lukem Exp $
 
 HOSTLIB=	nbcompat
 
@@ -166,5 +166,7 @@ INSTALL=	${INSTALL_OBJ}/xinstall
 # Run "${TOOLDIR}/bin/nbmake-${MACHINE} regen" by hand after editing
 # configure.ac.  See more detailed instructions in configure.ac.
 regen:
+	${_MKMSG_REGEN} configure
 	cd ${.CURDIR} && ${TOOLDIR}/bin/${_TOOL_PREFIX}autoconf
+	${_MKMSG_REGEN} nbtool_config.h.in
 	cd ${.CURDIR} && ${TOOLDIR}/bin/${_TOOL_PREFIX}autoheader

Reply via email to