]> granicus.if.org Git - re2c/commitdiff
Makefile.am: added forgotten 'AM_V_GEN' prefix to a couple of build rules.
authorUlya Trofimovich <skvadrik@gmail.com>
Sat, 13 Jul 2019 17:45:48 +0000 (18:45 +0100)
committerUlya Trofimovich <skvadrik@gmail.com>
Sat, 13 Jul 2019 17:45:48 +0000 (18:45 +0100)
Makefile.am

index 72ff13ca151e4be39299a19bf94cd55292e1a699..ce19a04941170aec89a614581496a7f38fd14142 100644 (file)
@@ -287,21 +287,21 @@ docs: $(DOC) $(re2c_GEN_HELP)
 $(DOC): $(re2c_SRC_DOC) $(re2c_SRC_DOC_EXT)
        $(AM_V_at)$(MKDIR_P) $(@D)
        $(RST2MAN) $(top_builddir)/$(re2c_SRC_DOC) > $@
-       cp $@ $(top_srcdir)/$(re2c_BOOT_DOC)
+       $(AM_V_GEN)cp $@ $(top_srcdir)/$(re2c_BOOT_DOC)
 $(re2c_GEN_HELP): $(re2c_CUSTOM_HELP)
        $(AM_V_at)$(MKDIR_P) $(@D)
        $(RST2MAN) $(top_builddir)/$(re2c_CUSTOM_HELP) > $@.1
        $(top_srcdir)/genhelp.sh $@.1 $@
-       cp $@ $(top_srcdir)/$(re2c_BOOT_HELP)
+       $(AM_V_GEN)cp $@ $(top_srcdir)/$(re2c_BOOT_HELP)
 else
 docs: $(DOC) $(re2c_GEN_HELP)
-       @echo "Reconfigure to rebuild docs: ./configure --enable-docs"
+       $(AM_V_at)echo "Reconfigure to rebuild docs: ./configure --enable-docs"
 $(DOC): $(re2c_BOOT_DOC)
        $(AM_V_at)$(MKDIR_P) $(@D)
-       cp $(top_srcdir)/$(re2c_BOOT_DOC) $@
+       $(AM_V_GEN)cp $(top_srcdir)/$(re2c_BOOT_DOC) $@
 $(re2c_GEN_HELP): $(re2c_BOOT_HELP)
        $(AM_V_at)$(MKDIR_P) $(@D)
-       cp $(top_srcdir)/$(re2c_BOOT_HELP) $@
+       $(AM_V_GEN)cp $(top_srcdir)/$(re2c_BOOT_HELP) $@
 endif
 
 all-local: docs $(re2c_BOOT_PARSER)