Tests: add unix socket wrapper unit tests
[lttng-tools.git] / tests / utils / Makefile.am
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 SUBDIRS = . tap testapp
4
5 EXTRA_DIST = utils.sh test_utils.py babelstats.pl warn_processes.sh \
6 parse-callstack.py
7 dist_noinst_SCRIPTS = utils.sh test_utils.py babelstats.pl
8 noinst_LTLIBRARIES = libtestutils.la
9
10 libtestutils_la_SOURCES = utils.c utils.h
11
12 all-local:
13 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
14 for script in $(EXTRA_DIST); do \
15 cp -f $(srcdir)/$$script $(builddir); \
16 done; \
17 fi
18
19 clean-local:
20 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
21 for script in $(EXTRA_DIST); do \
22 rm -f $(builddir)/$$script; \
23 done; \
24 fi
This page took 0.030407 seconds and 5 git commands to generate.