Commit | Line | Data |
---|---|---|
9d16b343 MJ |
1 | # SPDX-License-Identifier: GPL-2.0-only |
2 | ||
30d86f7d DG |
3 | noinst_SCRIPTS = README launch_ust_app test_multi_sessions_per_uid_10app \ |
4 | test_multi_sessions_per_uid_5app_streaming | |
5 | EXTRA_DIST = README launch_ust_app test_multi_sessions_per_uid_10app \ | |
6 | test_multi_sessions_per_uid_5app_streaming | |
c83e7ca0 DG |
7 | |
8 | all-local: | |
9 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ | |
10 | for script in $(EXTRA_DIST); do \ | |
11 | cp -f $(srcdir)/$$script $(builddir); \ | |
12 | done; \ | |
13 | fi | |
14 | ||
15 | clean-local: | |
16 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ | |
17 | for script in $(EXTRA_DIST); do \ | |
18 | rm -f $(builddir)/$$script; \ | |
19 | done; \ | |
20 | fi |