X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Fstress%2FMakefile.am;h=ca9bf059b3fac416e855c951dc1a1c99a55013ad;hp=e9b99e54326230618f75bed6b9e6dbf3121ff05f;hb=HEAD;hpb=605ac7582cd379d4c6d0744f822a494640ae2cc7 diff --git a/tests/stress/Makefile.am b/tests/stress/Makefile.am index e9b99e543..ca9bf059b 100644 --- a/tests/stress/Makefile.am +++ b/tests/stress/Makefile.am @@ -1,2 +1,20 @@ -noinst_SCRIPTS = README launch_ust_app test_multi_sessions_per_uid_10app -EXTRA_DIST = README launch_ust_app test_multi_sessions_per_uid_10app +# 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