| 1 | AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/liblttsessiondcomm \ |
| 2 | -I$(top_srcdir)/libkernelctl -I$(top_srcdir)/libustctl \ |
| 3 | -DINSTALL_BIN_PATH=\"$(bindir)\" |
| 4 | |
| 5 | AM_CFLAGS = -fno-strict-aliasing |
| 6 | |
| 7 | bin_PROGRAMS = ltt-sessiond |
| 8 | |
| 9 | ltt_sessiond_SOURCES = utils.c trace.c session.c traceable-app.c ust-ctl.c \ |
| 10 | kernel-ctl.c context.c main.c \ |
| 11 | utils.h trace.h session.h traceable-app.h ust-ctl.h \ |
| 12 | context.h kernel-ctl.h ltt-sessiond.h |
| 13 | |
| 14 | # link on liblttngctl for check if sessiond is already alive. |
| 15 | ltt_sessiond_LDADD = \ |
| 16 | $(top_builddir)/liblttsessiondcomm/liblttsessiondcomm.la \ |
| 17 | $(top_builddir)/libkernelctl/libkernelctl.la \ |
| 18 | $(top_builddir)/libustctl/libustctl.la \ |
| 19 | $(top_builddir)/liblttngctl/liblttngctl.la |