Fix: include stdlib.h in compat/string.h
[lttng-tools.git] / tests / Makefile.am
... / ...
CommitLineData
1SUBDIRS =
2DIST_SUBDIRS = utils unit regression stress destructive perf
3
4if BUILD_TESTS
5SUBDIRS += . utils unit regression stress destructive perf
6if HAVE_PGREP
7check-am:
8 $(top_srcdir)/tests/utils/warn_processes.sh $(PGREP)
9endif
10else
11 @echo "========================================="
12 @echo "WARNING: Tests were disabled at configure"
13 @echo "========================================="
14endif
15
16
17dist_noinst_SCRIPTS = run.sh fast_regression long_regression root_regression root_destructive_tests perf_regression
18EXTRA_DIST = run.sh fast_regression long_regression root_regression README root_destructive_tests perf_regression
19
20all-local:
21 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
22 for script in $(EXTRA_DIST); do \
23 cp -f $(srcdir)/$$script $(builddir); \
24 done; \
25 fi
26
27clean-local:
28 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
29 for script in $(EXTRA_DIST); do \
30 rm -f $(builddir)/$$script; \
31 done; \
32 fi
This page took 0.022409 seconds and 4 git commands to generate.