From 628835a5addbe3dbf49fbd221b3785518c7b26ac Mon Sep 17 00:00:00 2001 From: Peter Seiderer Date: Sun, 27 Apr 2014 13:14:51 +0200 Subject: [PATCH] configure.ac: add '--disable-tests' option Signed-off-by: Peter Seiderer --- Makefile.am | 2 +- configure.ac | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 7b68f3d..a83b35f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = src tools python test +SUBDIRS = src tools python $(SUBDIR_TESTS) pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = evemu.pc diff --git a/configure.ac b/configure.ac index 239811c..c7e16b3 100644 --- a/configure.ac +++ b/configure.ac @@ -45,6 +45,15 @@ if test "x$XMLTO" = "x" || test "x$ASCIIDOC" = "x"; then AC_MSG_WARN([xmlto or asciidoc not found - cannot create man pages without it]) fi +AC_ARG_ENABLE([tests], + AS_HELP_STRING([--disable-tests], [Disable running tests])) + +AS_IF([test "x$enable_tests" != "xno"], [ + SUBDIR_TESTS=test +]) + +AC_SUBST([SUBDIR_TESTS]) + AC_SUBST(AM_CFLAGS, "-Wall -Wextra") -- 1.8.1.4