Commit | Line | Data |
---|---|---|
ab5be9fa MJ |
1 | # SPDX-License-Identifier: GPL-2.0-only |
2 | ||
343af227 MJ |
3 | AM_CPPFLAGS +=-DINSTALL_BIN_PATH=\""$(lttnglibexecdir)"\" \ |
4 | -DINSTALL_LIB_PATH=\""$(libdir)"\" | |
3f5fa9ed | 5 | |
4fc83d94 PP |
6 | if EMBED_HELP |
7 | AM_CPPFLAGS += -I$(top_builddir)/doc/man | |
8 | endif | |
9 | ||
3efe5ec9 | 10 | noinst_LTLIBRARIES = liblttng-sessiond-common.la |
fac6795d | 11 | |
c9e313bc SM |
12 | liblttng_sessiond_common_la_SOURCES = utils.cpp utils.hpp \ |
13 | trace-kernel.cpp trace-kernel.hpp \ | |
14 | kernel.cpp kernel.hpp \ | |
15 | ust-app.hpp ust-sigbus.hpp trace-ust.hpp notify-apps.hpp \ | |
16 | lttng-ust-ctl.hpp lttng-ust-abi.hpp lttng-ust-error.hpp \ | |
17 | ust-ctl-internal.hpp ust-abi-internal.hpp ust-error-internal.hpp \ | |
18 | ust-registry.hpp \ | |
19 | condition-internal.cpp condition-internal.hpp \ | |
20 | context.cpp context.hpp \ | |
21 | channel.cpp channel.hpp \ | |
22 | event.cpp event.hpp \ | |
23 | consumer.cpp consumer.hpp \ | |
24 | session.cpp session.hpp \ | |
25 | modprobe.cpp modprobe.hpp kern-modules.hpp \ | |
26 | fd-limit.cpp fd-limit.hpp \ | |
27 | kernel-consumer.cpp kernel-consumer.hpp \ | |
28 | consumer.hpp \ | |
29 | health-sessiond.hpp \ | |
30 | cmd.cpp cmd.hpp \ | |
31 | buffer-registry.cpp buffer-registry.hpp \ | |
32 | testpoint.hpp \ | |
33 | snapshot.cpp snapshot.hpp \ | |
34 | agent.cpp agent.hpp \ | |
35 | save.hpp save.cpp \ | |
36 | lttng-syscall.hpp lttng-syscall.cpp \ | |
37 | notification-thread.hpp notification-thread.cpp \ | |
38 | notification-thread-internal.hpp \ | |
39 | notification-thread-commands.hpp notification-thread-commands.cpp \ | |
40 | notification-thread-events.hpp notification-thread-events.cpp \ | |
41 | sessiond-config.hpp sessiond-config.cpp \ | |
42 | rotate.hpp rotate.cpp \ | |
43 | rotation-thread.hpp rotation-thread.cpp \ | |
44 | timer.cpp timer.hpp \ | |
7966af57 SM |
45 | globals.cpp \ |
46 | thread-utils.cpp \ | |
47 | process-utils.cpp \ | |
c9e313bc | 48 | thread.cpp thread.hpp \ |
7966af57 | 49 | health.cpp \ |
c9e313bc SM |
50 | client.cpp client.hpp \ |
51 | dispatch.cpp dispatch.hpp \ | |
52 | register.cpp register.hpp \ | |
53 | manage-apps.cpp manage-apps.hpp \ | |
54 | manage-kernel.cpp manage-kernel.hpp \ | |
55 | manage-consumer.cpp manage-consumer.hpp \ | |
56 | clear.cpp clear.hpp \ | |
57 | tracker.cpp tracker.hpp \ | |
58 | event-notifier-error-accounting.cpp event-notifier-error-accounting.hpp \ | |
59 | action-executor.cpp action-executor.hpp\ | |
0220be14 JG |
60 | trigger-error-query.cpp \ |
61 | field.hpp field.cpp \ | |
62 | clock-class.hpp clock-class.cpp \ | |
63 | event-class.hpp event-class.cpp \ | |
64 | stream-class.hpp stream-class.cpp \ | |
65 | trace-class.hpp trace-class.cpp | |
fac6795d | 66 | |
74d0b642 | 67 | if HAVE_LIBLTTNG_UST_CTL |
7966af57 | 68 | liblttng_sessiond_common_la_SOURCES += trace-ust.cpp ust-registry.cpp ust-app.cpp \ |
c9e313bc | 69 | ust-consumer.cpp ust-consumer.hpp notify-apps.cpp \ |
d7bfb9b0 | 70 | ust-clock-class.hpp ust-clock-class.cpp \ |
b3647fb8 | 71 | agent-thread.cpp agent-thread.hpp \ |
d7bfb9b0 | 72 | ust-field-convert.cpp ust-field-convert.hpp \ |
aeeb48c6 | 73 | ust-sigbus.cpp \ |
b0f2e8db | 74 | ust-registry-session.cpp ust-registry-session.hpp \ |
d7bfb9b0 JG |
75 | ust-registry-event.cpp ust-registry-event.hpp \ |
76 | ust-registry-channel.cpp ust-registry-channel.hpp \ | |
b0f2e8db JG |
77 | ust-registry-session-uid.cpp ust-registry-session-uid.hpp \ |
78 | ust-registry-session-pid.cpp ust-registry-session-pid.hpp \ | |
79 | tsdl-trace-class-visitor.cpp tsdl-trace-class-visitor.hpp | |
3bd1e081 MD |
80 | endif |
81 | ||
7d8234d9 | 82 | # link on liblttngctl for check if sessiond is already alive. |
3efe5ec9 | 83 | liblttng_sessiond_common_la_LIBADD = $(URCU_LIBS) $(KMOD_LIBS) \ |
10a8a223 | 84 | $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \ |
4ae04234 MJ |
85 | $(top_builddir)/src/common/libsessiond-comm.la \ |
86 | $(top_builddir)/src/common/libkernel-ctl.la \ | |
6a5596ac | 87 | $(top_builddir)/src/common/libcommon-gpl.la \ |
4ae04234 MJ |
88 | $(top_builddir)/src/common/libcompat.la \ |
89 | $(top_builddir)/src/common/librelayd.la \ | |
90 | $(top_builddir)/src/common/libtestpoint.la \ | |
91 | $(top_builddir)/src/common/libhealth.la \ | |
92 | $(top_builddir)/src/common/libconfig.la \ | |
93 | $(top_builddir)/src/common/libstring-utils.la | |
26296c48 | 94 | |
f158a754 | 95 | |
74d0b642 | 96 | if HAVE_LIBLTTNG_UST_CTL |
3efe5ec9 | 97 | liblttng_sessiond_common_la_LIBADD += $(UST_CTL_LIBS) |
f158a754 | 98 | endif |
3efe5ec9 | 99 | |
100 | bin_PROGRAMS = lttng-sessiond | |
101 | ||
c9e313bc | 102 | lttng_sessiond_SOURCES = lttng-sessiond.hpp main.cpp |
3efe5ec9 | 103 | |
104 | lttng_sessiond_LDFLAGS = -rdynamic | |
105 | ||
106 | lttng_sessiond_LDADD = liblttng-sessiond-common.la |