Blame tests/Makefile.am

Packit a6ee4b
EXTRA_DIST = README
Packit a6ee4b
Packit a6ee4b
# Build misc unless both --disable-examples and --disable-benchmarks were passed
Packit a6ee4b
Packit a6ee4b
if BUILD_BENCHMARKS
Packit a6ee4b
SUBDIRS_BENCHMARKS = benchmarks
Packit a6ee4b
SUBDIRS_MISC = misc
Packit a6ee4b
else
Packit a6ee4b
SUBDIRS_BENCHMARKS =
Packit a6ee4b
endif
Packit a6ee4b
Packit a6ee4b
if BUILD_TESTS
Packit a6ee4b
## SUBDIRS_TESTS = tests testsuite
Packit a6ee4b
## FIXME: write tests from scratch
Packit a6ee4b
SUBDIRS_TESTS =
Packit a6ee4b
if HAVE_CHECK
Packit a6ee4b
SUBDIRS_CHECK = check
Packit a6ee4b
else
Packit a6ee4b
SUBDIRS_CHECK =
Packit a6ee4b
endif
Packit a6ee4b
else
Packit a6ee4b
SUBDIRS_TESTS =
Packit a6ee4b
SUBDIRS_CHECK =
Packit a6ee4b
endif
Packit a6ee4b
Packit a6ee4b
if BUILD_EXAMPLES
Packit a6ee4b
SUBDIRS_EXAMPLES = examples
Packit a6ee4b
SUBDIRS_MISC = misc
Packit a6ee4b
else
Packit a6ee4b
SUBDIRS_EXAMPLES =
Packit a6ee4b
endif
Packit a6ee4b
Packit a6ee4b
SUBDIRS = \
Packit a6ee4b
	$(SUBDIRS_BENCHMARKS) \
Packit a6ee4b
	$(SUBDIRS_CHECK) \
Packit a6ee4b
	$(SUBDIRS_MISC) \
Packit a6ee4b
	$(SUBDIRS_TESTS) \
Packit a6ee4b
	$(SUBDIRS_EXAMPLES)
Packit a6ee4b
Packit a6ee4b
# These are all the possible subdirs
Packit a6ee4b
DIST_SUBDIRS = \
Packit a6ee4b
	benchmarks \
Packit a6ee4b
	check \
Packit a6ee4b
	examples \
Packit a6ee4b
	misc