From 5d65599261515b6af769b580d83c3d39d85ea2ac Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 24 Apr 2023 14:16:31 +0200 Subject: autoconf: Allow disabling build of test suite --- Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 84b196d..7da967d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,11 +1,15 @@ AUTOMAKE_OPTIONS = foreign ACLOCAL_AMFLAGS = -I m4 -SUBDIRS = libcnary src include tools test docs +SUBDIRS = libcnary src include tools docs if HAVE_CYTHON SUBDIRS += cython endif +if BUILD_TESTS +SUBDIRS += test +endif + if BUILD_FUZZERS SUBDIRS += fuzz endif -- cgit v1.1-32-gdbae