librarize run_as
[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 lttng-ust-ctl.h lttng-ust-abi.h \
28 ../hashtable/rculfhash.c \
29 ../hashtable/rculfhash.h \
30 ../hashtable/hash.c ../hashtable/hash.h
31
32if HAVE_LIBLTTNG_UST_CTL
33lttng_sessiond_SOURCES += trace-ust.c ust-app.c ust-consumer.c ust-consumer.h
34endif
35
36# Add main.c at the end for compile order
37lttng_sessiond_SOURCES += lttng-sessiond.h main.c
38
39# link on liblttngctl for check if sessiond is already alive.
40lttng_sessiond_LDADD = -lrt -lurcu-common -lurcu \
41 $(top_builddir)/liblttng-sessiond-comm/liblttng-sessiond-comm.la \
42 $(top_builddir)/libkernelctl/libkernelctl.la \
43 $(top_builddir)/liblttngctl/liblttngctl.la \
44 $(top_builddir)/librunas/librunas.la
45
46if HAVE_LIBLTTNG_UST_CTL
47lttng_sessiond_LDADD += -llttng-ust-ctl
48endif
This page took 0.022199 seconds and 4 git commands to generate.