Turn health.h/health.c into a library
[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 ust-registry.h \
14 context.c context.h \
15 channel.c channel.h \
16 event.c event.h \
17 shm.c shm.h \
18 consumer.c consumer.h \
19 session.c session.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 \
24 consumer.h \
25 health.c health.h health-sessiond.h \
26 cmd.c cmd.h \
27 buffer-registry.c buffer-registry.h \
28 testpoint.h ht-cleanup.c \
29 snapshot.c snapshot.h
30
31 if HAVE_LIBLTTNG_UST_CTL
32 lttng_sessiond_SOURCES += trace-ust.c ust-registry.c ust-app.c \
33 ust-consumer.c ust-consumer.h ust-thread.c \
34 ust-metadata.c ust-clock.h
35 endif
36
37 # Add main.c at the end for compile order
38 lttng_sessiond_SOURCES += lttng-sessiond.h main.c
39
40 # link on liblttngctl for check if sessiond is already alive.
41 lttng_sessiond_LDADD = -lrt -lurcu-common -lurcu \
42 $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
43 $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \
44 $(top_builddir)/src/common/kernel-ctl/libkernel-ctl.la \
45 $(top_builddir)/src/common/hashtable/libhashtable.la \
46 $(top_builddir)/src/common/libcommon.la \
47 $(top_builddir)/src/common/compat/libcompat.la \
48 $(top_builddir)/src/common/relayd/librelayd.la \
49 $(top_builddir)/src/common/testpoint/libtestpoint.la
50
51 if HAVE_LIBLTTNG_UST_CTL
52 lttng_sessiond_LDADD += -llttng-ust-ctl
53 endif
This page took 0.031665 seconds and 5 git commands to generate.