Select which binaries/extras to build at configure time
[lttng-tools.git] / tests / Makefile.am
... / ...
CommitLineData
1SUBDIRS =
2DIST_SUBDIRS = utils regression unit stress
3
4if BUILD_TESTS
5SUBDIRS += utils regression unit stress
6endif
7
8installcheck-am:
9if BUILD_TESTS
10 ./run.sh unit_tests
11 ./run.sh fast_regression
12if PYTHON_BINDING
13 ./run.sh with_bindings_regression
14endif
15else
16 @echo "========================================="
17 @echo "WARNING: Tests were disabled at configure"
18 @echo "========================================="
19endif
20
21check-am:
22if BUILD_TESTS
23 ./run.sh unit_tests
24 ./run.sh fast_regression
25if PYTHON_BINDING
26 ./run.sh with_bindings_regression
27endif
28else
29 @echo "========================================="
30 @echo "WARNING: Tests were disabled at configure"
31 @echo "========================================="
32endif
33
34dist_noinst_SCRIPTS = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression
35EXTRA_DIST = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression README
36
37all-local:
38 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
39 for script in $(EXTRA_DIST); do \
40 cp -f $(srcdir)/$$script $(builddir); \
41 done; \
42 fi
43
44clean-local:
45 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
46 for script in $(EXTRA_DIST); do \
47 rm -f $(builddir)/$$script; \
48 done; \
49 fi
This page took 0.023503 seconds and 5 git commands to generate.