Fix --disable-lttng-ust build after UST API update
[lttng-tools.git] / lttng-sessiond / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)/include \
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 if COMPAT_EPOLL
10 COMPAT=compat/compat-epoll.c
11 else
12 COMPAT=compat/compat-poll.c
13 endif
14
15 lttng_sessiond_SOURCES = utils.c utils.h \
16 hashtable.c hashtable.h \
17 compat/poll.h $(COMPAT) \
18 trace-kernel.c trace-kernel.h \
19 kernel.c kernel.h \
20 ust-ctl.h ust-app.h trace-ust.h \
21 context.c context.h \
22 channel.c channel.h \
23 event.c event.h \
24 futex.c futex.h \
25 shm.c shm.h \
26 session.c session.h \
27 ../hashtable/rculfhash.c \
28 ../hashtable/rculfhash.h \
29 ../hashtable/hash.c ../hashtable/hash.h
30
31 if HAVE_LIBLTTNG_UST_CTL
32 lttng_sessiond_SOURCES += trace-ust.c ust-app.c ust-consumer.c ust-consumer.h
33 endif
34
35 # Add main.c at the end for compile order
36 lttng_sessiond_SOURCES += lttng-sessiond.h main.c
37
38 # link on liblttngctl for check if sessiond is already alive.
39 lttng_sessiond_LDADD = -lrt -lurcu-common -lurcu \
40 $(top_builddir)/liblttng-sessiond-comm/liblttng-sessiond-comm.la \
41 $(top_builddir)/libkernelctl/libkernelctl.la \
42 $(top_builddir)/liblttngctl/liblttngctl.la
43
44 if HAVE_LIBLTTNG_UST_CTL
45 lttng_sessiond_LDADD += -llttng-ust-ctl
46 endif
This page took 0.030192 seconds and 4 git commands to generate.