diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/faq/Makefile.am | 10 | ||||
-rw-r--r-- | doc/hackersguide/Makefile.am | 2 |
2 files changed, 8 insertions, 4 deletions
diff --git a/doc/faq/Makefile.am b/doc/faq/Makefile.am index f6fc1dd10..4a5c2f6f9 100644 --- a/doc/faq/Makefile.am +++ b/doc/faq/Makefile.am @@ -22,14 +22,18 @@ dist-hook: distclean-local: clean-docs +AM_V_FAKE = $(am__v_FAKE_$(V)) +am__v_FAKE_ = $(am__v_FAKE_$(AM_DEFAULT_VERBOSITY)) +am__v_FAKE_0 = @echo " FAKE " $@; + if HAVE_XMLTO faq.html: faq.docbook faq.xsl - xmlto -m faq.xsl xhtml-nochunks $< + $(AM_V_GEN)xmlto -m faq.xsl xhtml-nochunks $< faq.txt: faq.docbook faq.xsl - xmlto -m faq.xsl txt $< + $(AM_V_GEN)xmlto -m faq.xsl txt $< else faq.html faq.txt: faq.docbook - if test x"$(fail_if_missing)" = x"yes"; then \ + $(AM_V_FAKE)if test x"$(fail_if_missing)" = x"yes"; then \ echo "Please install xmlto."; \ exit 1; \ fi diff --git a/doc/hackersguide/Makefile.am b/doc/hackersguide/Makefile.am index f686f98f9..f117b9faa 100644 --- a/doc/hackersguide/Makefile.am +++ b/doc/hackersguide/Makefile.am @@ -63,7 +63,7 @@ if HAVE_RSVG .svg.png: $(AM_V_GEN)rsvg -f png $^ $@ if HAVE_OPTIPNG - $(AM_V_at)optipng $@ + $(AM_V_at)optipng -quiet $@ endif else .svg.png: |