Use compiler-agnostic defines to silence warning
[lttng-tools.git] / tests / regression / tools / live / Makefile.am
... / ...
CommitLineData
1# SPDX-License-Identifier: GPL-2.0-only
2
3AM_CPPFLAGS += -I$(top_srcdir)/tests/utils/ -I$(srcdir)
4
5LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la
6LIBLTTNG_SESSIOND_COMMON=$(top_builddir)/src/bin/lttng-sessiond/liblttng-sessiond-common.la
7
8noinst_PROGRAMS = live_test
9EXTRA_DIST = test_kernel test_lttng_kernel test_per_application_leaks.py
10
11if HAVE_LIBLTTNG_UST_CTL
12EXTRA_DIST += test_lttng_ust \
13 test_miss_short_lived_app.py \
14 test_ust \
15 test_ust_tracefile_count
16endif
17
18live_test_SOURCES = live_test.cpp
19live_test_LDADD = $(LIBTAP) $(LIBLTTNG_SESSIOND_COMMON) $(DL_LIBS)
20
21all-local:
22 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
23 for script in $(EXTRA_DIST); do \
24 cp -f $(srcdir)/$$script $(builddir); \
25 done; \
26 fi
27
28clean-local:
29 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
30 for script in $(EXTRA_DIST); do \
31 rm -f $(builddir)/$$script; \
32 done; \
33 fi
This page took 0.02443 seconds and 5 git commands to generate.