aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-03-07 20:33:59 +0100
committerHarald Welte <laforge@gnumonks.org>2010-03-07 20:33:59 +0100
commitf8b2ba7dc850396c5910e8c76875e75d37479d34 (patch)
tree524650c90f9c0f83127dba870c7198595f57532d
parentcbb29f7c94ad2a7cb0ebe7d43cbef5fb9d11d62e (diff)
add option --disable-tests to disable building of test binaries
-rw-r--r--configure.in8
-rw-r--r--tests/Makefile.am2
2 files changed, 8 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 11541967..abf7bf47 100644
--- a/configure.in
+++ b/configure.in
@@ -31,11 +31,15 @@ dnl Generate the output
AM_CONFIG_HEADER(config.h)
AC_ARG_ENABLE(talloc,
- [ --disable-talloc Support message buffer ],
+ [ --disable-talloc Disable building talloc memory allocator ],
[enable_talloc=0], [enable_talloc=1])
-
AM_CONDITIONAL(ENABLE_TALLOC, test "x$enable_talloc" = "x1")
+AC_ARG_ENABLE(tests,
+ [ --disable-tests Disable building test programs ],
+ [enable_tests=0], [enable_tests=1])
+AM_CONDITIONAL(ENABLE_TESTS, test "x$enable_tests" = "x1")
+
AC_OUTPUT(
libosmocore.pc
include/osmocore/Makefile
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 56e8b6f6..0119a02c 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1 +1,3 @@
+if ENABLE_TESTS
SUBDIRS = timer sms
+endif