Merge branch 'master' into benchmark
[lttng-tools.git] / src / bin / lttng-sessiond / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)/benchmark \
2 -DINSTALL_BIN_PATH=\""$(bindir)"\" \
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 \
13 context.c context.h \
14 channel.c channel.h \
15 event.c event.h \
16 futex.c futex.h \
17 shm.c shm.h \
18 session.c session.h \
19 modprobe.c modprobe.h kern-modules.h \
20 lttng-ust-ctl.h lttng-ust-abi.h
21
22 if HAVE_LIBLTTNG_UST_CTL
23 lttng_sessiond_SOURCES += trace-ust.c ust-app.c ust-consumer.c ust-consumer.h
24 endif
25
26 # Add main.c at the end for compile order
27 lttng_sessiond_SOURCES += lttng-sessiond.h main.c
28
29 # link on liblttngctl for check if sessiond is already alive.
30 lttng_sessiond_LDADD = -lrt -lurcu-common -lurcu \
31 $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
32 $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \
33 $(top_builddir)/src/common/kernel-ctl/libkernel-ctl.la \
34 $(top_builddir)/src/common/hashtable/libhashtable.la \
35 $(top_builddir)/src/common/libcommon.la \
36 $(top_builddir)/benchmark/liblttng-benchmark.la \
37 $(top_builddir)/src/common/libcompat.la
38
39 if HAVE_LIBLTTNG_UST_CTL
40 lttng_sessiond_LDADD += -llttng-ust-ctl
41 endif
This page took 0.030801 seconds and 4 git commands to generate.