[alacarte] Use AM_SILENT_RULES



commit 3cd92cab64d2dcc3756d7566822ed0bc5c8722ef
Author: Thomas Hindoe Paaboel Andersen <phomes gmail com>
Date:   Sat Jan 16 21:59:08 2010 +0100

    Use AM_SILENT_RULES

 Alacarte/Makefile.am |    2 +-
 Makefile.am          |    4 ++--
 configure.ac         |    1 +
 3 files changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/Alacarte/Makefile.am b/Alacarte/Makefile.am
index 6359d93..f1677ea 100644
--- a/Alacarte/Makefile.am
+++ b/Alacarte/Makefile.am
@@ -5,7 +5,7 @@ app_PYTHON = __init__.py MainWindow.py MenuEditor.py util.py
 nodist_app_PYTHON = config.py
 
 config.py: config.py.in
-	sed						\
+	$(AM_V_GEN)sed					\
 		-e s!\ prefix\@!$(prefix)!		\
 		-e s!\ datadir\@!$(datadir)!		\
 		-e s!\ pkgdatadir\@!$(pkgdatadir)!	\
diff --git a/Makefile.am b/Makefile.am
index 9611bc7..f0ed001 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -10,8 +10,8 @@ CLEANFILES += alacarte
 DISTCLEANFILES = ChangeLog
 
 alacarte: alacarte.in
-	sed -e s!\ PYTHON\@! PYTHON@!		\
-	    -e s!\ PYOPTIONS\@!-OOt!		\
+	$(AM_V_GEN)sed -e s!\ PYTHON\@! PYTHON@!	\
+	    -e s!\ PYOPTIONS\@!-OOt!			\
 	    < $< > $@
 alacarte: Makefile
 
diff --git a/configure.ac b/configure.ac
index b7c4bde..2ca2611 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,6 +2,7 @@ dnl -*- Mode: autoconf -*-
 dnl Process this file with autoconf to produce a configure script.
 AC_PREREQ(2.53)
 AC_INIT(alacarte, 0.13.3, http://bugzilla.gnome.org/enter_bug.cgi?product=alacarte)
+m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
 AC_CONFIG_SRCDIR(alacarte.in)
 AC_CONFIG_HEADERS([config.h])
 AM_INIT_AUTOMAKE([1.7])



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]