Add epoll check to autoconf and Makefile
[lttng-tools.git] / ltt-sessiond / Makefile.am
CommitLineData
ca3c5ac0 1AM_CPPFLAGS = -I$(top_srcdir)/include \
1e307fab 2 -DINSTALL_BIN_PATH=\""$(bindir)"\"
3f5fa9ed 3
5b74c7b1 4AM_CFLAGS = -fno-strict-aliasing
fac6795d
DG
5
6bin_PROGRAMS = ltt-sessiond
7
71615260
DG
8if COMPAT_EPOLL
9COMPAT=compat-epoll.c
10else
11COMPAT=compat-poll.c
12endif
13
62499ad6
DG
14ltt_sessiond_SOURCES = utils.c utils.h \
15 trace-kernel.c trace-kernel.h \
97ee3a89 16 trace-ust.c trace-ust.h \
62499ad6 17 traceable-app.c traceable-app.h \
0177d773 18 ust-comm.c ust-comm.h \
62499ad6
DG
19 ust-ctl.c ust-ctl.h \
20 kernel-ctl.c kernel-ctl.h \
21 context.c context.h \
22 futex.c futex.h \
0fdd1e2c 23 shm.c shm.h \
71615260
DG
24 poll.h \
25 $(COMPAT) \
0177d773 26 session.c session.h \
62499ad6 27 ltt-sessiond.h main.c
fac6795d 28
7d8234d9 29# link on liblttngctl for check if sessiond is already alive.
0fdd1e2c 30ltt_sessiond_LDADD = -lrt \
ca3c5ac0 31 $(top_builddir)/liblttng-sessiond-comm/liblttng-sessiond-comm.la \
62d3069f 32 $(top_builddir)/libkernelctl/libkernelctl.la \
7d8234d9
MD
33 $(top_builddir)/libustctl/libustctl.la \
34 $(top_builddir)/liblttngctl/liblttngctl.la
This page took 0.025044 seconds and 4 git commands to generate.