Update version to 2.0-pre17
[lttng-tools.git] / lttng-sessiond / Makefile.am
... / ...
CommitLineData
1AM_CPPFLAGS = -I$(top_srcdir)/include \
2 -DINSTALL_BIN_PATH=\""$(bindir)"\" \
3 -DINSTALL_LIB_PATH=\""$(libdir)"\"
4
5AM_CFLAGS = -fno-strict-aliasing
6
7bin_PROGRAMS = lttng-sessiond
8
9if COMPAT_EPOLL
10COMPAT=compat/compat-epoll.c
11else
12COMPAT=compat/compat-poll.c
13endif
14
15lttng_sessiond_SOURCES = utils.c utils.h \
16 compat/poll.h $(COMPAT) \
17 trace-kernel.c trace-kernel.h \
18 kernel.c kernel.h \
19 ust-ctl.h ust-app.h trace-ust.h \
20 context.c context.h \
21 channel.c channel.h \
22 event.c event.h \
23 futex.c futex.h \
24 shm.c shm.h \
25 session.c session.h \
26 lttng-ust-ctl.h lttng-ust-abi.h
27
28if HAVE_LIBLTTNG_UST_CTL
29lttng_sessiond_SOURCES += trace-ust.c ust-app.c ust-consumer.c ust-consumer.h
30endif
31
32# Add main.c at the end for compile order
33lttng_sessiond_SOURCES += lttng-sessiond.h main.c
34
35# link on liblttngctl for check if sessiond is already alive.
36lttng_sessiond_LDADD = -lrt -lurcu-common -lurcu \
37 $(top_builddir)/liblttng-sessiond-comm/liblttng-sessiond-comm.la \
38 $(top_builddir)/libkernelctl/libkernelctl.la \
39 $(top_builddir)/liblttngctl/liblttngctl.la \
40 $(top_builddir)/common/libcommon.la \
41 $(top_builddir)/liblttng-ht/liblttng-ht.la
42
43if HAVE_LIBLTTNG_UST_CTL
44lttng_sessiond_LDADD += -llttng-ust-ctl
45endif
This page took 0.026346 seconds and 5 git commands to generate.