summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2012-11-28 10:52:19 +0100
committerDieter Verfaillie <dieterv@optionexplicit.be>2012-12-03 22:47:04 +0100
commite6a55a30004feeed5ee05296aac85731b236bfa4 (patch)
treee558685ba5a72f824bf3b409d740e1818187ab8a
parente8f29e2531a9d2a88da944276ffd396e161deb20 (diff)
downloadgobject-introspection-e6a55a30004feeed5ee05296aac85731b236bfa4.tar.gz
tests: don't fake Automake silent mode
https://bugzilla.gnome.org/show_bug.cgi?id=689570
-rw-r--r--tests/doctool/Makefile.am10
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/doctool/Makefile.am b/tests/doctool/Makefile.am
index 9ef86f25..1e61cbbf 100644
--- a/tests/doctool/Makefile.am
+++ b/tests/doctool/Makefile.am
@@ -29,10 +29,16 @@ DocExamples_1_0_gir_FILES = $(libdocexamples_la_SOURCES)
GIRS += DocExamples-1.0.gir
%-C: %.gir
- $(MKDIR_P) $*-C ; rm -f $*-C/*.page ; $(INTROSPECTION_DOCTOOL) --language C $*.gir -o $*-C/ && echo " GEN $*-C/index.page"
+ $(AM_V_GEN)
+ $(AM_V_at)$(MKDIR_P) $*-C
+ $(AM_V_at)rm -f $*-C/*.page
+ $(AM_V_at)$(INTROSPECTION_DOCTOOL) --language C $*.gir -o $*-C/
%-Python: %.gir
- $(MKDIR_P) $*-Python ; rm -f $*-Python/*.page ; $(INTROSPECTION_DOCTOOL) --language Python $*.gir -o $*-Python/ && echo " GEN $*-Python/index.page"
+ $(AM_V_GEN)
+ $(AM_V_at)$(MKDIR_P) $*-Python
+ $(AM_V_at)rm -f $*-Python/*.page
+ $(AM_V_at)$(INTROSPECTION_DOCTOOL) --language Python $*.gir -o $*-Python/
%-C.page.check: %-C
@diff -u -U 10 $(srcdir)/$*-C-expected $*-C && echo " TEST $*-C" && rm -rf $*-C