docs: Add supported versions and fix-backport policy
[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.c utils.h \
13 trace-kernel.c trace-kernel.h \
14 kernel.c 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.c condition-internal.h \
20 context.c context.h \
21 channel.c channel.h \
22 event.c event.h \
23 consumer.c consumer.h \
24 session.c session.h \
25 modprobe.c modprobe.h kern-modules.h \
26 fd-limit.c fd-limit.h \
27 kernel-consumer.c kernel-consumer.h \
28 consumer.h \
29 health-sessiond.h \
30 cmd.c cmd.h \
31 buffer-registry.c buffer-registry.h \
32 testpoint.h ht-cleanup.c ht-cleanup.h \
33 snapshot.c snapshot.h \
34 agent.c agent.h \
35 save.h save.c \
36 lttng-syscall.h lttng-syscall.c \
37 notification-thread.h notification-thread.c \
38 notification-thread-internal.h \
39 notification-thread-commands.h notification-thread-commands.c \
40 notification-thread-events.h notification-thread-events.c \
41 sessiond-config.h sessiond-config.c \
42 rotate.h rotate.c \
43 rotation-thread.h rotation-thread.c \
44 timer.c timer.h \
45 globals.c \
46 thread-utils.c \
47 process-utils.c \
48 thread.c thread.h \
49 health.c \
50 client.c client.h \
51 dispatch.c dispatch.h \
52 register.c register.h \
53 manage-apps.c manage-apps.h \
54 manage-kernel.c manage-kernel.h \
55 manage-consumer.c manage-consumer.h \
56 clear.c clear.h \
57 tracker.c tracker.h \
58 event-notifier-error-accounting.c event-notifier-error-accounting.h \
59 action-executor.c action-executor.h\
60 trigger-error-query.c
61
62 if HAVE_LIBLTTNG_UST_CTL
63 liblttng_sessiond_common_la_SOURCES += trace-ust.c ust-registry.c ust-app.c \
64 ust-consumer.c ust-consumer.h notify-apps.c \
65 ust-metadata.c ust-clock.h agent-thread.c agent-thread.h \
66 ust-field-utils.h ust-field-utils.c \
67 ust-sigbus.c
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.c
92
93 lttng_sessiond_LDFLAGS = -rdynamic
94
95 lttng_sessiond_LDADD = liblttng-sessiond-common.la
This page took 0.031072 seconds and 4 git commands to generate.