Move compat to common and create an internal lib
[lttng-tools.git] / src / bin / lttng-sessiond / Makefile.am
1 AM_CPPFLAGS = -DINSTALL_BIN_PATH=\""$(bindir)"\" \
2 -DINSTALL_LIB_PATH=\""$(libdir)"\"
3
4 AM_CFLAGS = -fno-strict-aliasing
5
6 bin_PROGRAMS = lttng-sessiond
7
8 lttng_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 futex.c futex.h \
16 shm.c shm.h \
17 session.c session.h \
18 lttng-ust-ctl.h lttng-ust-abi.h
19
20 if HAVE_LIBLTTNG_UST_CTL
21 lttng_sessiond_SOURCES += trace-ust.c ust-app.c ust-consumer.c ust-consumer.h
22 endif
23
24 # Add main.c at the end for compile order
25 lttng_sessiond_SOURCES += lttng-sessiond.h main.c
26
27 # link on liblttngctl for check if sessiond is already alive.
28 lttng_sessiond_LDADD = -lrt -lurcu-common -lurcu \
29 $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
30 $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \
31 $(top_builddir)/src/common/kernel-ctl/libkernel-ctl.la \
32 $(top_builddir)/src/common/hashtable/libhashtable.la \
33 $(top_builddir)/src/common/libcommon.la \
34 $(top_builddir)/src/common/libcompat.la
35
36 if HAVE_LIBLTTNG_UST_CTL
37 lttng_sessiond_LDADD += -llttng-ust-ctl
38 endif
This page took 0.032368 seconds and 6 git commands to generate.