diff --git a/backend/Makefile.am b/backend/Makefile.am index 1ce95bd3f..634b7c52f 100644 --- a/backend/Makefile.am +++ b/backend/Makefile.am @@ -93,7 +93,8 @@ becfg: $(BACKEND_CONFS) SUFFIXES = .conf.in .conf .conf.in.conf: - @echo Generating $@ from $^ + $(AM_V_GEN) + @if $(AM_V_P); then echo Generating $@ from $^; fi @sed -e 's|@DATADIR@|$(datadir)|g' \ -e 's|@CONFIGDIR@|$(configdir)|g' \ -e 's|@DOCDIR@|$(docdir)|g' \ @@ -1452,10 +1453,12 @@ libpixma_la_CPPFLAGS = $(AM_CPPFLAGS) $(XML_CFLAGS) -DBACKEND_NAME=pixma pixma/pixma.c: pixma/pixma_sane_options.h pixma/pixma_sane_options.c pixma/pixma_sane_options.h: - @echo Generating $@ from $(@D)/pixma.c + $(AM_V_GEN) + @if $(AM_V_P); then echo Generating $@ from $(@D)/pixma.c; fi @(cd $(@D); $(PYTHON) scripts/pixma_gen_options.py h < pixma.c > $(@F)) pixma/pixma_sane_options.c: - @echo Generating $@ from $(@D)/pixma.c + $(AM_V_GEN) + @if $(AM_V_P); then echo Generating $@ from $(@D)/pixma.c; fi @(cd $(@D); $(PYTHON) scripts/pixma_gen_options.py < pixma.c > $(@F)) EXTRA_DIST += pixma/pixma_sane_options.c diff --git a/doc/Makefile.am b/doc/Makefile.am index f050abb39..19e9df5de 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -95,7 +95,8 @@ MAN2HTML = nroff -c -man |\ sed 's,,

,' %.1 %.5 %.7 %.8: %.man - @echo "Generating manpage $@..."; + $(AM_V_GEN) + @if $(AM_V_P); then echo "Generating manpage $@..."; fi @sed -e 's|@DATADIR@|$(datadir)|g' \ -e 's|@CONFIGDIR@|$(configdir)|g' \ -e 's|@DOCDIR@|$(docdir)|g' \