1
0
Fork 0

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>
This commit is contained in:
Emmanuele Bassi 2009-08-10 12:45:44 +02:00
parent 9a55b0c3ff
commit 0aa31b4ebc
2 changed files with 8 additions and 5 deletions

View file

@ -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)

View file

@ -1,9 +1,10 @@
NULL =
V = @
Q = $(V:1=)
if USE_SHAVE
QUIET_GEN = $(Q:@=@echo ' GEN '$@;)
QUIET_CP = $(Q:@=@echo ' CP '$@;)
else
QUIET_GEN = $(AM_V_GEN)
endif # USE_SHAVE
INCLUDES = \
-I$(top_srcdir) \