X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Fstress%2FMakefile.am;h=ca9bf059b3fac416e855c951dc1a1c99a55013ad;hp=2f510f0949fc5952248f6bb450f061edee3f12c1;hb=HEAD;hpb=30d86f7d9b5b49d8e035e686b9d23c7bda805e11 diff --git a/tests/stress/Makefile.am b/tests/stress/Makefile.am index 2f510f094..ca9bf059b 100644 --- a/tests/stress/Makefile.am +++ b/tests/stress/Makefile.am @@ -1,4 +1,20 @@ +# SPDX-License-Identifier: GPL-2.0-only + 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