edb3f27c274d49649eea5bcbd02a959de1081fec
[lttng-tools.git] / tests / regression / tools / notification / Makefile.am
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 AM_CPPFLAGS += -I$(top_srcdir)/tests/utils
4
5 LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la
6 LIB_LTTNG_CTL = $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la
7
8 noinst_PROGRAMS = base_client notification rotation
9
10 if NO_SHARED
11
12 CLEANFILES = libpause_consumer.so libpause_consumer.so.debug libpause_sessiond.so libpause_sessiond.so.debug
13 EXTRA_DIST = \
14 base_client.c \
15 consumer_testpoints.cpp \
16 sessiond_testpoints.cpp \
17 notification.cpp \
18 test_notification_kernel_buffer_usage \
19 test_notification_kernel_capture \
20 test_notification_kernel_error \
21 test_notification_kernel_instrumentation \
22 test_notification_kernel_syscall \
23 test_notification_kernel_userspace_probe \
24 test_notification_multi_app \
25 test_notification_notifier_discarded_count \
26 test_notification_ust_buffer_usage \
27 test_notification_ust_capture \
28 test_notification_ust_error \
29 test_notification_ust_event_rule_condition_exclusion \
30 util_event_generator.sh
31 else
32
33 # In order to test the health check feature, the helper library
34 # must be built as .so to be able to LD_PRELOAD it.
35 FORCE_SHARED_LIB_OPTIONS = -module -shared -avoid-version \
36 -rpath $(abs_builddir)
37
38 libpause_consumer_la_SOURCES = consumer_testpoints.cpp
39 libpause_consumer_la_LIBADD = \
40 $(top_builddir)/src/common/libsessiond-comm.la \
41 $(top_builddir)/src/common/libcommon-gpl.la \
42 $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
43 $(DL_LIBS)
44 libpause_consumer_la_LDFLAGS = $(FORCE_SHARED_LIB_OPTIONS)
45
46 libpause_sessiond_la_SOURCES = sessiond_testpoints.cpp
47 libpause_sessiond_la_LIBADD = \
48 $(top_builddir)/src/common/libcommon-gpl.la \
49 $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
50 $(DL_LIBS)
51 libpause_sessiond_la_LDFLAGS = $(FORCE_SHARED_LIB_OPTIONS)
52 noinst_LTLIBRARIES = libpause_sessiond.la libpause_consumer.la
53
54 base_client_SOURCES = base_client.c
55 base_client_LDADD = $(LIB_LTTNG_CTL)
56
57 notification_SOURCES = notification.cpp
58 # Tests the deprecated lttng_register_trigger() interface
59 notification_CXXFLAGS = -Wno-deprecated-declarations $(AM_CXXFLAGS)
60 notification_LDADD = $(LIB_LTTNG_CTL) $(LIBTAP) -lm
61
62 rotation_SOURCES = rotation.c
63 rotation_LDADD = $(LIB_LTTNG_CTL) $(LIBTAP) -lm
64
65 noinst_SCRIPTS = \
66 test_notification_kernel_buffer_usage \
67 test_notification_kernel_error \
68 test_notification_kernel_instrumentation \
69 test_notification_kernel_syscall \
70 test_notification_kernel_userspace_probe \
71 test_notification_multi_app \
72 test_notification_notifier_discarded_count \
73 test_notification_ust_buffer_usage \
74 test_notification_ust_error \
75 test_notification_ust_event_rule_condition_exclusion \
76 test_rotation \
77 util_event_generator.sh
78
79 EXTRA_DIST = \
80 test_notification_kernel_buffer_usage \
81 test_notification_kernel_capture \
82 test_notification_kernel_error \
83 test_notification_kernel_instrumentation \
84 test_notification_kernel_syscall \
85 test_notification_kernel_userspace_probe \
86 test_notification_multi_app \
87 test_notification_notifier_discarded_count \
88 test_notification_ust_buffer_usage \
89 test_notification_ust_capture \
90 test_notification_ust_error \
91 test_notification_ust_event_rule_condition_exclusion \
92 test_rotation \
93 util_event_generator.sh
94
95 all-local:
96 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
97 for script in $(EXTRA_DIST); do \
98 cp -f $(srcdir)/$$script $(builddir); \
99 done; \
100 fi
101
102 clean-local:
103 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
104 for script in $(EXTRA_DIST); do \
105 rm -f $(builddir)/$$script; \
106 done; \
107 fi
108 endif
This page took 0.035535 seconds and 5 git commands to generate.