1 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src \
2 -DINSTALL_BIN_PATH=\""$(lttnglibexecdir)"\" \
3 -DINSTALL_LIB_PATH=\""$(libdir)"\"
5 AM_CFLAGS = -fno-strict-aliasing
7 bin_PROGRAMS = lttng-sessiond
9 lttng_sessiond_SOURCES = utils.c utils.h \
10 trace-kernel.c trace-kernel.h \
12 ust-ctl.h ust-app.h trace-ust.h ust-thread.h \
18 consumer.c consumer.h \
20 modprobe.c modprobe.h kern-modules.h \
21 lttng-ust-ctl.h lttng-ust-abi.h lttng-ust-error.h \
22 fd-limit.c fd-limit.h \
23 kernel-consumer.c kernel-consumer.h \
27 buffer-registry.c buffer-registry.h \
28 testpoint.h ht-cleanup.c \
29 snapshot.c snapshot.h \
32 if HAVE_LIBLTTNG_UST_CTL
33 lttng_sessiond_SOURCES += trace-ust.c ust-registry.c ust-app.c \
34 ust-consumer.c ust-consumer.h ust-thread.c \
35 ust-metadata.c ust-clock.h jul-thread.c jul-thread.h
38 # Add main.c at the end for compile order
39 lttng_sessiond_SOURCES += lttng-sessiond.h main.c
41 # link on liblttngctl for check if sessiond is already alive.
42 lttng_sessiond_LDADD = -lrt -lurcu-common -lurcu \
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 \
47 $(top_builddir)/src/common/libcommon.la \
48 $(top_builddir)/src/common/compat/libcompat.la \
49 $(top_builddir)/src/common/relayd/librelayd.la \
50 $(top_builddir)/src/common/testpoint/libtestpoint.la \
51 $(top_builddir)/src/common/health/libhealth.la
53 if HAVE_LIBLTTNG_UST_CTL
54 lttng_sessiond_LDADD += -llttng-ust-ctl