summaryrefslogtreecommitdiff
path: root/test/system/Makefile.am
blob: 2aba75e1cfd380ef9b9e53ed9a8f61cee734236d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
TESTS_ENVIRONMENT =
TESTS =

# Things that aren't tests but that tests rely on and need to
# go into the distribution
TEST_DEPS_DIST =

# Make-level dependencies; these don't go in the source distribution
# but should trigger a re-compile of all unit tests.  Libraries are
# included here because (1) if static-linking, the tests must be
# relinked, and (2) if they've changed that means the sources changed,
# and that means we should ensure the tests compile against any
# changes made in the header files.
TEST_DEPS_NODIST = \
	$(abs_top_builddir)/src/libcvc4.la \
	$(abs_top_builddir)/src/parser/libcvc4parser.la

TEST_DEPS = \
	$(TEST_DEPS_DIST) \
	$(TEST_DEPS_NODIST)

EXTRA_DIST = \
	$(TEST_DEPS_DIST)

# rebuild tests if a library changes
$(TESTS):: $(TEST_DEPS)

# synonyms for "check"
.PHONY: regress test
regress test: check
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback