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 \ |
d0b96690 | 13 | ust-ctl.h ust-app.h trace-ust.h ust-thread.h \ |
7972aab2 | 14 | ust-registry.h \ |
62499ad6 | 15 | context.c context.h \ |
54d01ffb DG |
16 | channel.c channel.h \ |
17 | event.c event.h \ | |
0fdd1e2c | 18 | shm.c shm.h \ |
07424f16 | 19 | consumer.c consumer.h \ |
0177d773 | 20 | session.c session.h \ |
096102bd | 21 | modprobe.c modprobe.h kern-modules.h \ |
57edb464 | 22 | lttng-ust-ctl.h lttng-ust-abi.h lttng-ust-error.h \ |
f1e16794 | 23 | fd-limit.c fd-limit.h \ |
0840ee7f | 24 | kernel-consumer.c kernel-consumer.h \ |
025faf73 | 25 | consumer.h \ |
55d09795 | 26 | health-sessiond.h \ |
8ac94142 | 27 | cmd.c cmd.h \ |
7972aab2 | 28 | buffer-registry.c buffer-registry.h \ |
5e97de00 | 29 | testpoint.h ht-cleanup.c ht-cleanup.h \ |
0475c50c | 30 | snapshot.c snapshot.h \ |
022d91ba | 31 | agent.c agent.h \ |
ef367a93 | 32 | save.h save.c \ |
834978fd | 33 | load-session-thread.h load-session-thread.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 JD |
41 | rotation-thread.h rotation-thread.c \ |
42 | sessiond-timer.c sessiond-timer.h | |
fac6795d | 43 | |
74d0b642 | 44 | if HAVE_LIBLTTNG_UST_CTL |
7972aab2 | 45 | lttng_sessiond_SOURCES += trace-ust.c ust-registry.c ust-app.c \ |
d0b96690 | 46 | ust-consumer.c ust-consumer.h ust-thread.c \ |
98b73e88 FD |
47 | ust-metadata.c ust-clock.h agent-thread.c agent-thread.h \ |
48 | ust-field-utils.h ust-field-utils.c | |
3bd1e081 MD |
49 | endif |
50 | ||
48842b30 | 51 | # Add main.c at the end for compile order |
32258573 | 52 | lttng_sessiond_SOURCES += lttng-sessiond.h main.c |
48842b30 | 53 | |
7d8234d9 | 54 | # link on liblttngctl for check if sessiond is already alive. |
83dcc026 | 55 | lttng_sessiond_LDADD = -lurcu-common -lurcu $(KMOD_LIBS) \ |
10a8a223 DG |
56 | $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \ |
57 | $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \ | |
58 | $(top_builddir)/src/common/kernel-ctl/libkernel-ctl.la \ | |
59 | $(top_builddir)/src/common/hashtable/libhashtable.la \ | |
0ba98ebc | 60 | $(top_builddir)/src/common/libcommon.la \ |
00e2e675 | 61 | $(top_builddir)/src/common/compat/libcompat.la \ |
8ac94142 | 62 | $(top_builddir)/src/common/relayd/librelayd.la \ |
55d09795 | 63 | $(top_builddir)/src/common/testpoint/libtestpoint.la \ |
26296c48 | 64 | $(top_builddir)/src/common/health/libhealth.la \ |
9f449915 PP |
65 | $(top_builddir)/src/common/config/libconfig.la \ |
66 | $(top_builddir)/src/common/string-utils/libstring-utils.la | |
26296c48 | 67 | |
f158a754 | 68 | |
74d0b642 | 69 | if HAVE_LIBLTTNG_UST_CTL |
fa551d12 | 70 | lttng_sessiond_LDADD += -llttng-ust-ctl |
f158a754 | 71 | endif |