sessiond: trigger: run trigger actions through an action executor
[lttng-tools.git] / src / bin / lttng-sessiond / Makefile.am
CommitLineData
ab5be9fa
MJ
1# SPDX-License-Identifier: GPL-2.0-only
2
343af227
MJ
3AM_CPPFLAGS +=-DINSTALL_BIN_PATH=\""$(lttnglibexecdir)"\" \
4 -DINSTALL_LIB_PATH=\""$(libdir)"\"
3f5fa9ed 5
4fc83d94
PP
6if EMBED_HELP
7AM_CPPFLAGS += -I$(top_builddir)/doc/man
8endif
9
32258573 10bin_PROGRAMS = lttng-sessiond
fac6795d 11
32258573 12lttng_sessiond_SOURCES = utils.c utils.h \
62499ad6 13 trace-kernel.c trace-kernel.h \
4771f025 14 kernel.c kernel.h \
75018ab6
JG
15 ust-app.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 \
7972aab2 18 ust-registry.h \
62499ad6 19 context.c context.h \
54d01ffb
DG
20 channel.c channel.h \
21 event.c event.h \
0fdd1e2c 22 shm.c shm.h \
07424f16 23 consumer.c consumer.h \
0177d773 24 session.c session.h \
096102bd 25 modprobe.c modprobe.h kern-modules.h \
f1e16794 26 fd-limit.c fd-limit.h \
0840ee7f 27 kernel-consumer.c kernel-consumer.h \
025faf73 28 consumer.h \
55d09795 29 health-sessiond.h \
8ac94142 30 cmd.c cmd.h \
7972aab2 31 buffer-registry.c buffer-registry.h \
5e97de00 32 testpoint.h ht-cleanup.c ht-cleanup.h \
0475c50c 33 snapshot.c snapshot.h \
022d91ba 34 agent.c agent.h \
ef367a93 35 save.h save.c \
0dbc2034 36 lttng-syscall.h lttng-syscall.c \
ab0ee2ca 37 notification-thread.h notification-thread.c \
8abe313a 38 notification-thread-internal.h \
ab0ee2ca 39 notification-thread-commands.h notification-thread-commands.c \
e6142f2e 40 notification-thread-events.h notification-thread-events.c \
db66e574
JD
41 sessiond-config.h sessiond-config.c \
42 rotate.h rotate.c \
d086f507 43 rotation-thread.h rotation-thread.c \
a7333da7 44 timer.c timer.h \
a7333da7
JG
45 globals.c \
46 thread-utils.c \
b878f05a 47 process-utils.c \
173fca4f 48 thread.c thread.h \
917a718d 49 health.c \
5d1b0219 50 client.c client.h \
1785d7f2 51 dispatch.c dispatch.h \
7649924e 52 register.c register.h \
5b093681 53 manage-apps.c manage-apps.h \
4ec029ed 54 manage-kernel.c manage-kernel.h \
022349df 55 manage-consumer.c manage-consumer.h \
55c9e7ca 56 clear.c clear.h \
f2b3ef9f
JG
57 tracker.c tracker.h \
58 action-executor.c action-executor.h
fac6795d 59
74d0b642 60if HAVE_LIBLTTNG_UST_CTL
7972aab2 61lttng_sessiond_SOURCES += trace-ust.c ust-registry.c ust-app.c \
f9d2ba6a 62 ust-consumer.c ust-consumer.h notify-apps.c \
98b73e88
FD
63 ust-metadata.c ust-clock.h agent-thread.c agent-thread.h \
64 ust-field-utils.h ust-field-utils.c
3bd1e081
MD
65endif
66
48842b30 67# Add main.c at the end for compile order
32258573 68lttng_sessiond_SOURCES += lttng-sessiond.h main.c
48842b30 69
7d8234d9 70# link on liblttngctl for check if sessiond is already alive.
83dcc026 71lttng_sessiond_LDADD = -lurcu-common -lurcu $(KMOD_LIBS) \
10a8a223
DG
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 \
0ba98ebc 76 $(top_builddir)/src/common/libcommon.la \
00e2e675 77 $(top_builddir)/src/common/compat/libcompat.la \
8ac94142 78 $(top_builddir)/src/common/relayd/librelayd.la \
55d09795 79 $(top_builddir)/src/common/testpoint/libtestpoint.la \
26296c48 80 $(top_builddir)/src/common/health/libhealth.la \
9f449915
PP
81 $(top_builddir)/src/common/config/libconfig.la \
82 $(top_builddir)/src/common/string-utils/libstring-utils.la
26296c48 83
f158a754 84
74d0b642 85if HAVE_LIBLTTNG_UST_CTL
20dd2de1 86lttng_sessiond_LDADD += $(UST_CTL_LIBS)
f158a754 87endif
This page took 0.086795 seconds and 5 git commands to generate.