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