diff options
author | Emmanuele Bassi <ebassi@linux.intel.com> | 2009-08-10 12:45:44 +0200 |
---|---|---|
committer | Emmanuele Bassi <ebassi@linux.intel.com> | 2009-08-19 13:42:36 +0100 |
commit | 0aa31b4ebc4938627a9993e109043da6184939ad (patch) | |
tree | 62840160f35c376fff8785176a02446ac68d7349 /Makefile.am | |
parent | 9a55b0c3ff10d940fae95fd66501a93e32da95b9 (diff) | |
download | cogl-0aa31b4ebc4938627a9993e109043da6184939ad.tar.gz |
Use AM_SILENT_RULES if automake >= 1.11 is installed
Fixes bug:
http://bugzilla.openedhand.com/show_bug.cgi?id=1756
Based on a patch by: Javier Jardón <javierjc1982@gmail.com>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 62998a6f..7e28f92c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,8 +1,10 @@ NULL = -V = @ -Q = $(V:1=) +if USE_SHAVE QUIET_GEN = $(Q:@=@echo ' GEN '$@;) +else +QUIET_GEN = $(AM_V_GEN) +endif # USE_SHAVE SUBDIRS = common $(CLUTTER_COGL) |