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