From 4516bad519c2a78a910d6246ed9c7586a208958b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 2 Jun 2015 12:32:42 +0100 Subject: [PATCH] Make top-level 'check-torture' and 'check-valgrind' targets functional --- Makefile.am | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/Makefile.am b/Makefile.am index 5c62203..04ec52e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,18 +16,24 @@ ACLOCAL_AMFLAGS = -I m4 -I common/m4 include $(top_srcdir)/common/release.mak +if HAVE_GST_CHECK check-valgrind: - @true + $(MAKE) -C tests/check check-valgrind check-torture: - @true + $(MAKE) -C tests/check torture -if HAVE_GST_CHECK build-checks: - cd tests/check && make build-checks + $(MAKE) -C tests/check build-checks else +check-valgrind: + echo "'check' library not installed, skipping" + +check-torture: + echo "'check' library not installed, skipping" + build-checks: - true + echo "'check' library not installed, skipping" endif CRUFT_FILES = \ -- 2.7.4