Commit | Line | Data |
---|---|---|
74130cb7 PC |
1 | AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src \ |
2 | -DINSTALL_BIN_PATH=\""$(lttnglibexecdir)"\" \ | |
ebaeda94 | 3 | -DINSTALL_LIB_PATH=\""$(libdir)"\" |
3f5fa9ed | 4 | |
5b74c7b1 | 5 | AM_CFLAGS = -fno-strict-aliasing |
fac6795d | 6 | |
32258573 | 7 | bin_PROGRAMS = lttng-sessiond |
fac6795d | 8 | |
32258573 | 9 | lttng_sessiond_SOURCES = utils.c utils.h \ |
62499ad6 | 10 | trace-kernel.c trace-kernel.h \ |
4771f025 | 11 | kernel.c kernel.h \ |
d0b96690 | 12 | ust-ctl.h ust-app.h trace-ust.h ust-thread.h \ |
7972aab2 | 13 | ust-registry.h \ |
62499ad6 | 14 | context.c context.h \ |
54d01ffb DG |
15 | channel.c channel.h \ |
16 | event.c event.h \ | |
0fdd1e2c | 17 | shm.c shm.h \ |
07424f16 | 18 | consumer.c consumer.h \ |
0177d773 | 19 | session.c session.h \ |
096102bd | 20 | modprobe.c modprobe.h kern-modules.h \ |
57edb464 | 21 | lttng-ust-ctl.h lttng-ust-abi.h lttng-ust-error.h \ |
f1e16794 | 22 | fd-limit.c fd-limit.h \ |
0840ee7f | 23 | kernel-consumer.c kernel-consumer.h \ |
025faf73 | 24 | consumer.h \ |
55d09795 | 25 | health-sessiond.h \ |
8ac94142 | 26 | cmd.c cmd.h \ |
7972aab2 | 27 | buffer-registry.c buffer-registry.h \ |
6dc3064a | 28 | testpoint.h ht-cleanup.c \ |
0475c50c | 29 | snapshot.c snapshot.h \ |
95b1d17c | 30 | jul.c jul.h |
fac6795d | 31 | |
74d0b642 | 32 | if HAVE_LIBLTTNG_UST_CTL |
7972aab2 | 33 | lttng_sessiond_SOURCES += trace-ust.c ust-registry.c ust-app.c \ |
d0b96690 | 34 | ust-consumer.c ust-consumer.h ust-thread.c \ |
95b1d17c | 35 | ust-metadata.c ust-clock.h jul-thread.c jul-thread.h |
3bd1e081 MD |
36 | endif |
37 | ||
48842b30 | 38 | # Add main.c at the end for compile order |
32258573 | 39 | lttng_sessiond_SOURCES += lttng-sessiond.h main.c |
48842b30 | 40 | |
7d8234d9 | 41 | # link on liblttngctl for check if sessiond is already alive. |
68abb9c8 | 42 | lttng_sessiond_LDADD = -lrt -lurcu-common -lurcu \ |
10a8a223 DG |
43 | $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \ |
44 | $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \ | |
45 | $(top_builddir)/src/common/kernel-ctl/libkernel-ctl.la \ | |
46 | $(top_builddir)/src/common/hashtable/libhashtable.la \ | |
0ba98ebc | 47 | $(top_builddir)/src/common/libcommon.la \ |
00e2e675 | 48 | $(top_builddir)/src/common/compat/libcompat.la \ |
8ac94142 | 49 | $(top_builddir)/src/common/relayd/librelayd.la \ |
55d09795 MD |
50 | $(top_builddir)/src/common/testpoint/libtestpoint.la \ |
51 | $(top_builddir)/src/common/health/libhealth.la | |
f158a754 | 52 | |
74d0b642 | 53 | if HAVE_LIBLTTNG_UST_CTL |
fa551d12 | 54 | lttng_sessiond_LDADD += -llttng-ust-ctl |
f158a754 | 55 | endif |