Introduce libcommon-lgpl for liblttng-ctl
[lttng-tools.git] / tests / regression / tools / live / Makefile.am
CommitLineData
9d16b343
MJ
1# SPDX-License-Identifier: GPL-2.0-only
2
343af227 3AM_CPPFLAGS += -I$(top_srcdir)/tests/utils/ -I$(srcdir)
1b368955 4
1b368955 5LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la
ef8ce584 6LIBLTTNG_SESSIOND_COMMON=$(top_builddir)/src/bin/lttng-sessiond/liblttng-sessiond-common.la
1b368955
JD
7
8noinst_PROGRAMS = live_test
90da811b 9EXTRA_DIST = test_kernel test_lttng_kernel
1b368955
JD
10
11if HAVE_LIBLTTNG_UST_CTL
90da811b 12EXTRA_DIST += test_ust test_ust_tracefile_count test_lttng_ust
1b368955
JD
13endif
14
729c1fec 15live_test_SOURCES = live_test.cpp
ef8ce584 16live_test_LDADD = $(LIBTAP) $(LIBLTTNG_SESSIOND_COMMON) $(DL_LIBS)
1b368955
JD
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.04004 seconds and 4 git commands to generate.