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 | ||
32258573 | 10 | bin_PROGRAMS = lttng-sessiond |
fac6795d | 11 | |
32258573 | 12 | lttng_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 \ |
e98a976a | 19 | condition-internal.c condition-internal.h \ |
62499ad6 | 20 | context.c context.h \ |
54d01ffb DG |
21 | channel.c channel.h \ |
22 | event.c event.h \ | |
0fdd1e2c | 23 | shm.c shm.h \ |
07424f16 | 24 | consumer.c consumer.h \ |
0177d773 | 25 | session.c session.h \ |
096102bd | 26 | modprobe.c modprobe.h kern-modules.h \ |
f1e16794 | 27 | fd-limit.c fd-limit.h \ |
0840ee7f | 28 | kernel-consumer.c kernel-consumer.h \ |
025faf73 | 29 | consumer.h \ |
55d09795 | 30 | health-sessiond.h \ |
8ac94142 | 31 | cmd.c cmd.h \ |
7972aab2 | 32 | buffer-registry.c buffer-registry.h \ |
5e97de00 | 33 | testpoint.h ht-cleanup.c ht-cleanup.h \ |
0475c50c | 34 | snapshot.c snapshot.h \ |
022d91ba | 35 | agent.c agent.h \ |
ef367a93 | 36 | save.h save.c \ |
0dbc2034 | 37 | lttng-syscall.h lttng-syscall.c \ |
ab0ee2ca | 38 | notification-thread.h notification-thread.c \ |
8abe313a | 39 | notification-thread-internal.h \ |
ab0ee2ca | 40 | notification-thread-commands.h notification-thread-commands.c \ |
e6142f2e | 41 | notification-thread-events.h notification-thread-events.c \ |
db66e574 JD |
42 | sessiond-config.h sessiond-config.c \ |
43 | rotate.h rotate.c \ | |
d086f507 | 44 | rotation-thread.h rotation-thread.c \ |
a7333da7 | 45 | timer.c timer.h \ |
a7333da7 JG |
46 | globals.c \ |
47 | thread-utils.c \ | |
b878f05a | 48 | process-utils.c \ |
173fca4f | 49 | thread.c thread.h \ |
917a718d | 50 | health.c \ |
5d1b0219 | 51 | client.c client.h \ |
1785d7f2 | 52 | dispatch.c dispatch.h \ |
7649924e | 53 | register.c register.h \ |
5b093681 | 54 | manage-apps.c manage-apps.h \ |
4ec029ed | 55 | manage-kernel.c manage-kernel.h \ |
022349df | 56 | manage-consumer.c manage-consumer.h \ |
55c9e7ca | 57 | clear.c clear.h \ |
f2b3ef9f JG |
58 | tracker.c tracker.h \ |
59 | action-executor.c action-executor.h | |
fac6795d | 60 | |
74d0b642 | 61 | if HAVE_LIBLTTNG_UST_CTL |
7972aab2 | 62 | lttng_sessiond_SOURCES += trace-ust.c ust-registry.c ust-app.c \ |
f9d2ba6a | 63 | ust-consumer.c ust-consumer.h notify-apps.c \ |
98b73e88 FD |
64 | ust-metadata.c ust-clock.h agent-thread.c agent-thread.h \ |
65 | ust-field-utils.h ust-field-utils.c | |
3bd1e081 MD |
66 | endif |
67 | ||
48842b30 | 68 | # Add main.c at the end for compile order |
32258573 | 69 | lttng_sessiond_SOURCES += lttng-sessiond.h main.c |
48842b30 | 70 | |
7d8234d9 | 71 | # link on liblttngctl for check if sessiond is already alive. |
62b7418e | 72 | lttng_sessiond_LDADD = -lurcu-common $(URCU_LIBS) $(KMOD_LIBS) \ |
10a8a223 DG |
73 | $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \ |
74 | $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \ | |
75 | $(top_builddir)/src/common/kernel-ctl/libkernel-ctl.la \ | |
76 | $(top_builddir)/src/common/hashtable/libhashtable.la \ | |
0ba98ebc | 77 | $(top_builddir)/src/common/libcommon.la \ |
00e2e675 | 78 | $(top_builddir)/src/common/compat/libcompat.la \ |
8ac94142 | 79 | $(top_builddir)/src/common/relayd/librelayd.la \ |
55d09795 | 80 | $(top_builddir)/src/common/testpoint/libtestpoint.la \ |
26296c48 | 81 | $(top_builddir)/src/common/health/libhealth.la \ |
9f449915 PP |
82 | $(top_builddir)/src/common/config/libconfig.la \ |
83 | $(top_builddir)/src/common/string-utils/libstring-utils.la | |
26296c48 | 84 | |
f158a754 | 85 | |
74d0b642 | 86 | if HAVE_LIBLTTNG_UST_CTL |
20dd2de1 | 87 | lttng_sessiond_LDADD += $(UST_CTL_LIBS) |
f158a754 | 88 | endif |