Project Info Name.......: gnu-hello
Description: GNU Hello


gnu-hello       
Info
Commit...:1a04646423406df85b4c41609e55eb8482806247
Author...:Collin Funk
Committer:Reuben Thomas
Date.....:Thu Jul 24 19:27:11 2025 -0700
Parents..:fd9ce3c6ff7636fb745a0b5fcc999e0d09d13a49

Message
build: respect Automake silent-rules when generating hello.1

* Makefile.am (hello.1): Use $(AM_V_GEN) and $(AM_V_at).

Changes
diff --git a/Makefile.am b/Makefile.am
line changes: +4/-3
index 1a0ee0f..d946a21
--- a/Makefile.am
+++ b/Makefile.am
@@ -57,9 +57,10 @@ endif
 
 if BUILD_FROM_GIT
 hello.1: hello$(EXEEXT)
-	$(HELP2MAN) --include=$(top_srcdir)/man/hello.x $(top_builddir)/hello$(EXEEXT) -o $@-t
-	chmod a=r $@-t
-	mv -f $@-t $@
+	$(AM_V_GEN)$(HELP2MAN) --include=$(top_srcdir)/man/hello.x \
+	  $(top_builddir)/hello$(EXEEXT) -o $@-t;
+	$(AM_V_at)chmod a=r $@-t
+	$(AM_V_at)mv -f $@-t $@
 
 CLEANFILES += $(man_MANS)
 endif

This website is licensed under AGPL-3.0. Feel free to copy!