X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=tests%2Fregression%2Ftools%2Fhealth%2FMakefile.am;h=ed13743a41303970a7ea098ab651b035c6baf4ea;hb=a33d2d4ae3b4bd640b5f535b4213e6606e7d0ddd;hp=94e54dfaf0655d6cba9cb21ba7c87c6eef494e98;hpb=5d2e1e66a968d9e555f9b8b00d0589ebfaf3de32;p=lttng-tools.git diff --git a/tests/regression/tools/health/Makefile.am b/tests/regression/tools/health/Makefile.am index 94e54dfaf..ed13743a4 100644 --- a/tests/regression/tools/health/Makefile.am +++ b/tests/regression/tools/health/Makefile.am @@ -36,3 +36,22 @@ health_check_SOURCES = health_check.c $(UTILS) health_check_LDADD = $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \ $(top_builddir)/src/common/libcommon.la endif + +dist_noinst_SCRIPTS = test_thread_exit test_thread_stall test_tp_fail \ + test_health.sh +EXTRA_DIST = test_thread_exit test_thread_stall test_tp_fail \ + test_health.sh + +all-local: + @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + for script in $(EXTRA_DIST); do \ + cp -f $(srcdir)/$$script $(builddir); \ + done; \ + fi + +clean-local: + @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + for script in $(EXTRA_DIST); do \ + rm -f $(builddir)/$$script; \ + done; \ + fi