X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Fstress%2FMakefile.am;h=433d6ad83e0b03c72196b6f671f6ed21cc6dc1b0;hp=2f510f0949fc5952248f6bb450f061edee3f12c1;hb=67b4c664e2c6c6dc19920555c0abf094ed6cbe00;hpb=30d86f7d9b5b49d8e035e686b9d23c7bda805e11 diff --git a/tests/stress/Makefile.am b/tests/stress/Makefile.am index 2f510f094..433d6ad83 100644 --- a/tests/stress/Makefile.am +++ b/tests/stress/Makefile.am @@ -2,3 +2,17 @@ noinst_SCRIPTS = README launch_ust_app test_multi_sessions_per_uid_10app \ test_multi_sessions_per_uid_5app_streaming EXTRA_DIST = README launch_ust_app test_multi_sessions_per_uid_10app \ test_multi_sessions_per_uid_5app_streaming + +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