2de44a492d427564650fd0d5c4ec8cf181e88519
[lttng-tools.git] / src / bin / lttng-sessiond / Makefile.am
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 AM_CPPFLAGS +=-DINSTALL_BIN_PATH=\""$(lttnglibexecdir)"\" \
4 -DINSTALL_LIB_PATH=\""$(libdir)"\"
5
6 if EMBED_HELP
7 AM_CPPFLAGS += -I$(top_builddir)/doc/man
8 endif
9
10 noinst_LTLIBRARIES = liblttng-sessiond-common.la
11
12 liblttng_sessiond_common_la_SOURCES = utils.cpp utils.h \
13 trace-kernel.cpp trace-kernel.h \
14 kernel.cpp kernel.h \
15 ust-app.h ust-sigbus.h trace-ust.h notify-apps.h \
16 lttng-ust-ctl.h lttng-ust-abi.h lttng-ust-error.h \
17 ust-ctl-internal.h ust-abi-internal.h ust-error-internal.h \
18 ust-registry.h \
19 condition-internal.cpp condition-internal.h \
20 context.cpp context.h \
21 channel.cpp channel.h \
22 event.cpp event.h \
23 consumer.cpp consumer.h \
24 session.cpp session.h \
25 modprobe.cpp modprobe.h kern-modules.h \
26 fd-limit.cpp fd-limit.h \
27 kernel-consumer.cpp kernel-consumer.h \
28 consumer.h \
29 health-sessiond.h \
30 cmd.cpp cmd.h \
31 buffer-registry.cpp buffer-registry.h \
32 testpoint.h ht-cleanup.cpp ht-cleanup.h \
33 snapshot.cpp snapshot.h \
34 agent.cpp agent.h \
35 save.h save.cpp \
36 lttng-syscall.h lttng-syscall.cpp \
37 notification-thread.h notification-thread.cpp \
38 notification-thread-internal.h \
39 notification-thread-commands.h notification-thread-commands.cpp \
40 notification-thread-events.h notification-thread-events.cpp \
41 sessiond-config.h sessiond-config.cpp \
42 rotate.h rotate.cpp \
43 rotation-thread.h rotation-thread.cpp \
44 timer.cpp timer.h \
45 globals.cpp \
46 thread-utils.cpp \
47 process-utils.cpp \
48 thread.cpp thread.h \
49 health.cpp \
50 client.cpp client.h \
51 dispatch.cpp dispatch.h \
52 register.cpp register.h \
53 manage-apps.cpp manage-apps.h \
54 manage-kernel.cpp manage-kernel.h \
55 manage-consumer.cpp manage-consumer.h \
56 clear.cpp clear.h \
57 tracker.cpp tracker.h \
58 event-notifier-error-accounting.cpp event-notifier-error-accounting.h \
59 action-executor.cpp action-executor.h\
60 trigger-error-query.cpp
61
62 if HAVE_LIBLTTNG_UST_CTL
63 liblttng_sessiond_common_la_SOURCES += trace-ust.cpp ust-registry.cpp ust-app.cpp \
64 ust-consumer.cpp ust-consumer.h notify-apps.cpp \
65 ust-metadata.cpp ust-clock.h agent-thread.cpp agent-thread.h \
66 ust-field-utils.h ust-field-utils.cpp \
67 ust-sigbus.cpp
68 endif
69
70 # link on liblttngctl for check if sessiond is already alive.
71 liblttng_sessiond_common_la_LIBADD = $(URCU_LIBS) $(KMOD_LIBS) \
72 $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
73 $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \
74 $(top_builddir)/src/common/kernel-ctl/libkernel-ctl.la \
75 $(top_builddir)/src/common/hashtable/libhashtable.la \
76 $(top_builddir)/src/common/libcommon.la \
77 $(top_builddir)/src/common/compat/libcompat.la \
78 $(top_builddir)/src/common/relayd/librelayd.la \
79 $(top_builddir)/src/common/testpoint/libtestpoint.la \
80 $(top_builddir)/src/common/health/libhealth.la \
81 $(top_builddir)/src/common/config/libconfig.la \
82 $(top_builddir)/src/common/string-utils/libstring-utils.la
83
84
85 if HAVE_LIBLTTNG_UST_CTL
86 liblttng_sessiond_common_la_LIBADD += $(UST_CTL_LIBS)
87 endif
88
89 bin_PROGRAMS = lttng-sessiond
90
91 lttng_sessiond_SOURCES = lttng-sessiond.h main.cpp
92
93 lttng_sessiond_LDFLAGS = -rdynamic
94
95 lttng_sessiond_LDADD = liblttng-sessiond-common.la
This page took 0.030498 seconds and 3 git commands to generate.