Tests: Add health check tests to configure
[lttng-tools.git] / src / bin / lttng-sessiond / Makefile.am
... / ...
CommitLineData
1AM_CPPFLAGS = -DINSTALL_BIN_PATH=\""$(lttnglibexecdir)"\" \
2 -DINSTALL_LIB_PATH=\""$(libdir)"\"
3
4AM_CFLAGS = -fno-strict-aliasing
5
6bin_PROGRAMS = lttng-sessiond
7
8lttng_sessiond_SOURCES = utils.c utils.h \
9 trace-kernel.c trace-kernel.h \
10 kernel.c kernel.h \
11 ust-ctl.h ust-app.h trace-ust.h \
12 context.c context.h \
13 channel.c channel.h \
14 event.c event.h \
15 shm.c shm.h \
16 consumer.c consumer.h \
17 session.c session.h \
18 modprobe.c modprobe.h kern-modules.h \
19 lttng-ust-ctl.h lttng-ust-abi.h \
20 fd-limit.c fd-limit.h \
21 kernel-consumer.c kernel-consumer.h \
22 consumer.h filter.c filter.h \
23 health.c health.h \
24 cmd.c cmd.h \
25 testpoint.h
26
27if HAVE_LIBLTTNG_UST_CTL
28lttng_sessiond_SOURCES += trace-ust.c ust-app.c ust-consumer.c ust-consumer.h
29endif
30
31# Add main.c at the end for compile order
32lttng_sessiond_SOURCES += lttng-sessiond.h main.c
33
34# link on liblttngctl for check if sessiond is already alive.
35lttng_sessiond_LDADD = -lrt -lurcu-common -lurcu \
36 $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
37 $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \
38 $(top_builddir)/src/common/kernel-ctl/libkernel-ctl.la \
39 $(top_builddir)/src/common/hashtable/libhashtable.la \
40 $(top_builddir)/src/common/libcommon.la \
41 $(top_builddir)/src/common/compat/libcompat.la \
42 $(top_builddir)/src/common/relayd/librelayd.la \
43 $(top_builddir)/src/common/testpoint/libtestpoint.la
44
45if HAVE_LIBLTTNG_UST_CTL
46lttng_sessiond_LDADD += -llttng-ust-ctl
47endif
This page took 0.024554 seconds and 5 git commands to generate.