Describe autotools/libtool/automake version dependency
[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 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
31if HAVE_LIBLTTNG_UST_CTL
32lttng_sessiond_SOURCES += trace-ust.c ust-app.c ust-consumer.c ust-consumer.h
33endif
34
35# Add main.c at the end for compile order
36lttng_sessiond_SOURCES += lttng-sessiond.h main.c
37
38# link on liblttngctl for check if sessiond is already alive.
39lttng_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
44if HAVE_LIBLTTNG_UST_CTL
45lttng_sessiond_LDADD += -llttng-ust-ctl
46endif
This page took 0.02226 seconds and 4 git commands to generate.