vscode: Add configurations to run the executables under the debugger
[lttng-tools.git] / tests / utils / Makefile.am
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 SUBDIRS = . tap testapp xml-utils lttngtest bt2_plugins
4
5 EXTRA_DIST = utils.sh test_utils.py warn_processes.sh \
6 parse-callstack.py
7 dist_noinst_SCRIPTS = utils.sh test_utils.py tap-driver.sh
8 noinst_LTLIBRARIES = libtestutils.la
9
10 libtestutils_la_SOURCES = \
11 utils.cpp \
12 utils.h
13
14 all-local:
15 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
16 for script in $(EXTRA_DIST); do \
17 cp -f $(srcdir)/$$script $(builddir); \
18 done; \
19 fi
20
21 clean-local:
22 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
23 for script in $(EXTRA_DIST); do \
24 rm -f $(builddir)/$$script; \
25 done; \
26 fi
This page took 0.030403 seconds and 5 git commands to generate.