summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2013-09-19 10:20:30 +0200
committerColin Walters <walters@verbum.org>2013-10-09 12:48:45 -0400
commitbb362a16e18f8c0c3d4049b4cf181b956a871554 (patch)
tree8b2dee7bcf5cce14ed94af1bf63f950e71b8d816 /tests
parentdf5b4d906dc8450b9537fd849e2837df14b2a47e (diff)
downloadgobject-introspection-bb362a16e18f8c0c3d4049b4cf181b956a871554.tar.gz
tests: prevent warnings with some make implementations
some make implementations don't like empty $(AM_V_GEN) rule commands, see http://lists.gnu.org/archive/html/bug-coreutils/2009-04/msg00251.html for more info.
Diffstat (limited to 'tests')
-rw-r--r--tests/scanner/Makefile.am12
1 files changed, 4 insertions, 8 deletions
diff --git a/tests/scanner/Makefile.am b/tests/scanner/Makefile.am
index cf52eac2..a1c0ecfa 100644
--- a/tests/scanner/Makefile.am
+++ b/tests/scanner/Makefile.am
@@ -159,23 +159,19 @@ EXPECTED_MALLARD_DIRS = $(MALLARD_DIRS:=-expected)
CLEANFILES += $(MALLARD_CLEAN)
%-C: %.gir
- $(AM_V_GEN)
- $(AM_V_at)-rm -rf $(builddir)/$*-C
+ $(AM_V_GEN)rm -rf $(builddir)/$*-C
$(AM_V_at)$(INTROSPECTION_DOCTOOL) $(INTROSPECTION_DOCTOOL_ARGS) --language C $*.gir -o $(builddir)/$*-C/
%-Python: %.gir
- $(AM_V_GEN)
- $(AM_V_at)-rm -rf $(builddir)/$*-Python
+ $(AM_V_GEN)rm -rf $(builddir)/$*-Python
$(AM_V_at)$(INTROSPECTION_DOCTOOL) $(INTROSPECTION_DOCTOOL_ARGS) --language Python $*.gir -o $(builddir)/$*-Python/
%-Gjs: %.gir
- $(AM_V_GEN)
- $(AM_V_at)-rm -rf $(builddir)/$*-Gjs
+ $(AM_V_GEN)rm -rf $(builddir)/$*-Gjs
$(AM_V_at)$(INTROSPECTION_DOCTOOL) $(INTROSPECTION_DOCTOOL_ARGS) --language Gjs $*.gir -o $(builddir)/$*-Gjs/
%-sections.txt: %.gir
- $(AM_V_GEN)
- $(AM_V_at)$(INTROSPECTION_DOCTOOL) $(INTROSPECTION_DOCTOOL_ARGS) --write-sections-file $*.gir -o $@
+ $(AM_V_GEN)$(INTROSPECTION_DOCTOOL) $(INTROSPECTION_DOCTOOL_ARGS) --write-sections-file $*.gir -o $@
%-C.page.check: %-C
@diff -r -u -w -B -U 10 $(srcdir)/$*-C-expected $(builddir)/$*-C && echo " TEST $*-C"