build: Use silent rules for generating files

This commit is contained in:
Maarten Bosmans 2011-03-09 10:00:21 +01:00 committed by Colin Guthrie
parent b3721a12c5
commit e2df844976
2 changed files with 12 additions and 12 deletions

View file

@ -36,7 +36,7 @@ noinst_DATA = \
default.pa.5.xml
%.xml: %.xml.in Makefile
sed -e 's,@pulseconfdir\@,$(pulseconfdir),g' \
$(AM_V_GEN) sed -e 's,@pulseconfdir\@,$(pulseconfdir),g' \
-e 's,@PACKAGE_BUGREPORT\@,$(PACKAGE_BUGREPORT),g' \
-e 's,@PACKAGE_URL\@,$(PACKAGE_URL),g' $< > $@
@ -66,7 +66,7 @@ CLEANFILES += \
$(dist_man_MANS)
%: %.xml Makefile
perl $(srcdir)/xmltoman $< > $@ || rm -f $@
$(AM_V_GEN) perl $(srcdir)/xmltoman $< > $@ || rm -f $@
endif