Commit | Line | Data |
---|---|---|
ca3c5ac0 | 1 | AM_CPPFLAGS = -I$(top_srcdir)/include \ |
1e307fab | 2 | -DINSTALL_BIN_PATH=\""$(bindir)"\" |
3f5fa9ed | 3 | |
5b74c7b1 | 4 | AM_CFLAGS = -fno-strict-aliasing |
fac6795d DG |
5 | |
6 | bin_PROGRAMS = ltt-sessiond | |
7 | ||
71615260 | 8 | if COMPAT_EPOLL |
5eb91c98 | 9 | COMPAT=compat/compat-epoll.c |
71615260 | 10 | else |
5eb91c98 | 11 | COMPAT=compat/compat-poll.c |
71615260 DG |
12 | endif |
13 | ||
62499ad6 | 14 | ltt_sessiond_SOURCES = utils.c utils.h \ |
5eb91c98 | 15 | compat/poll.h $(COMPAT) \ |
62499ad6 | 16 | trace-kernel.c trace-kernel.h \ |
97ee3a89 | 17 | trace-ust.c trace-ust.h \ |
56fff090 | 18 | ust-app.c ust-app.h \ |
0177d773 | 19 | ust-comm.c ust-comm.h \ |
62499ad6 DG |
20 | ust-ctl.c ust-ctl.h \ |
21 | kernel-ctl.c kernel-ctl.h \ | |
22 | context.c context.h \ | |
54d01ffb DG |
23 | channel.c channel.h \ |
24 | event.c event.h \ | |
62499ad6 | 25 | futex.c futex.h \ |
0fdd1e2c | 26 | shm.c shm.h \ |
0177d773 | 27 | session.c session.h \ |
fa68aa62 | 28 | ltt-sessiond.h main.c \ |
f9a76689 MD |
29 | ../hashtable/rculfhash.c \ |
30 | ../hashtable/rculfhash.h | |
fac6795d | 31 | |
7d8234d9 | 32 | # link on liblttngctl for check if sessiond is already alive. |
0fdd1e2c | 33 | ltt_sessiond_LDADD = -lrt \ |
ca3c5ac0 | 34 | $(top_builddir)/liblttng-sessiond-comm/liblttng-sessiond-comm.la \ |
62d3069f | 35 | $(top_builddir)/libkernelctl/libkernelctl.la \ |
7d8234d9 MD |
36 | $(top_builddir)/libustctl/libustctl.la \ |
37 | $(top_builddir)/liblttngctl/liblttngctl.la |