Commit | Line | Data |
---|---|---|
386418ba | 1 | AM_CPPFLAGS = -DINSTALL_BIN_PATH=\""$(lttnglibexecdir)"\" \ |
ebaeda94 | 2 | -DINSTALL_LIB_PATH=\""$(libdir)"\" |
3f5fa9ed | 3 | |
5b74c7b1 | 4 | AM_CFLAGS = -fno-strict-aliasing |
fac6795d | 5 | |
32258573 | 6 | bin_PROGRAMS = lttng-sessiond |
fac6795d | 7 | |
32258573 | 8 | lttng_sessiond_SOURCES = utils.c utils.h \ |
62499ad6 | 9 | trace-kernel.c trace-kernel.h \ |
4771f025 | 10 | kernel.c kernel.h \ |
48842b30 | 11 | ust-ctl.h ust-app.h trace-ust.h \ |
62499ad6 | 12 | context.c context.h \ |
54d01ffb DG |
13 | channel.c channel.h \ |
14 | event.c event.h \ | |
0fdd1e2c | 15 | shm.c shm.h \ |
0177d773 | 16 | session.c session.h \ |
096102bd | 17 | modprobe.c modprobe.h kern-modules.h \ |
4063050c | 18 | lttng-ust-ctl.h lttng-ust-abi.h \ |
f1e16794 | 19 | fd-limit.c fd-limit.h \ |
00e2e675 | 20 | consumer.c consumer.h \ |
0840ee7f | 21 | kernel-consumer.c kernel-consumer.h \ |
44a5e5eb DG |
22 | consumer.h filter.c filter.h \ |
23 | health.c health.h | |
fac6795d | 24 | |
74d0b642 | 25 | if HAVE_LIBLTTNG_UST_CTL |
32258573 | 26 | lttng_sessiond_SOURCES += trace-ust.c ust-app.c ust-consumer.c ust-consumer.h |
3bd1e081 MD |
27 | endif |
28 | ||
48842b30 | 29 | # Add main.c at the end for compile order |
32258573 | 30 | lttng_sessiond_SOURCES += lttng-sessiond.h main.c |
48842b30 | 31 | |
7d8234d9 | 32 | # link on liblttngctl for check if sessiond is already alive. |
68abb9c8 | 33 | lttng_sessiond_LDADD = -lrt -lurcu-common -lurcu \ |
10a8a223 DG |
34 | $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \ |
35 | $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \ | |
36 | $(top_builddir)/src/common/kernel-ctl/libkernel-ctl.la \ | |
37 | $(top_builddir)/src/common/hashtable/libhashtable.la \ | |
0ba98ebc | 38 | $(top_builddir)/src/common/libcommon.la \ |
00e2e675 DG |
39 | $(top_builddir)/src/common/compat/libcompat.la \ |
40 | $(top_builddir)/src/common/relayd/librelayd.la | |
f158a754 | 41 | |
74d0b642 | 42 | if HAVE_LIBLTTNG_UST_CTL |
fa551d12 | 43 | lttng_sessiond_LDADD += -llttng-ust-ctl |
f158a754 | 44 | endif |