tests: Split test_ust_constructor into several tests
[lttng-tools.git] / tests / regression / ust / ust-constructor / Makefile.am
CommitLineData
da1e97c9
MD
1# SPDX-License-Identifier: GPL-2.0-only
2
f506900f
KS
3noinst_SCRIPTS = __init__.py \
4 test_ust_constructor_c_dynamic.py \
5 test_ust_constructor_c_static.py \
6 test_ust_constructor_cpp_dynamic.py \
7 test_ust_constructor_cpp_static.py \
8 ust_constructor_common.py
9
10EXTRA_DIST = __init__.py \
11 test_ust_constructor_c_dynamic.py \
12 test_ust_constructor_c_static.py \
13 test_ust_constructor_cpp_dynamic.py \
14 test_ust_constructor_cpp_static.py \
15 ust_constructor_common.py
16
da1e97c9
MD
17
18all-local:
19 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
20 for script in $(EXTRA_DIST); do \
21 cp -f $(srcdir)/$$script $(builddir); \
22 done; \
23 fi
24
25clean-local:
26 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
27 for script in $(EXTRA_DIST); do \
28 rm -f $(builddir)/$$script; \
29 done; \
30 fi
This page took 0.028462 seconds and 4 git commands to generate.