From 4e1b540383a7491bc7cc969abfedeb9ce4627c20 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Tue, 16 Jul 2013 15:32:47 +0100 Subject: [PATCH] Build: Use `silent-rules'. --- Makefile.am | 6 +++--- configure.ac | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index b23bcbc..31e97ca 100644 --- a/Makefile.am +++ b/Makefile.am @@ -73,11 +73,11 @@ CLEANFILES += checkpath.pc EXTRA_DIST += checkpath.pc.in checkpath.pc: checkpath.pc.in Makefile - $(top_srcdir)/config/confsubst $(srcdir)/checkpath.pc.in >$@.new \ + $(AM_V_GEN)$(top_srcdir)/config/confsubst \ + $(srcdir)/checkpath.pc.in >$@.new \ prefix=$(prefix) exec_prefix=$(exec_prefix) \ libdir=$(libdir) includedir=$(includedir) \ - VERSION=$(VERSION) - mv $@.new $@ + VERSION=$(VERSION) && mv $@.new $@ ###-------------------------------------------------------------------------- ### Other finishing touches. diff --git a/configure.ac b/configure.ac index f433382..759333e 100644 --- a/configure.ac +++ b/configure.ac @@ -27,6 +27,7 @@ mdw_AUTO_VERSION AC_INIT([Checkpath], AUTO_VERSION, [mdw@distorted.org.uk]) AC_CONFIG_SRCDIR([checkpath.c]) AC_CONFIG_AUX_DIR([config]) +mdw_SILENT_RULES AM_INIT_AUTOMAKE([foreign]) dnl-------------------------------------------------------------------------- -- 2.11.0