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