X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2FMakefile.am;h=41538bce722486c3f2a47c7d9980a2bba66f73d5;hp=4b4e7ec996e15ccde73276b1a4a51ddb58f72525;hb=7649924e1b3a80687c2fb79f8778e08bedb671ce;hpb=9f449915b9d44ce3c9c9255f5d491a62545fee25 diff --git a/src/bin/lttng-sessiond/Makefile.am b/src/bin/lttng-sessiond/Makefile.am index 4b4e7ec99..41538bce7 100644 --- a/src/bin/lttng-sessiond/Makefile.am +++ b/src/bin/lttng-sessiond/Makefile.am @@ -1,13 +1,10 @@ -AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src \ - -DINSTALL_BIN_PATH=\""$(lttnglibexecdir)"\" \ - -DINSTALL_LIB_PATH=\""$(libdir)"\" +AM_CPPFLAGS +=-DINSTALL_BIN_PATH=\""$(lttnglibexecdir)"\" \ + -DINSTALL_LIB_PATH=\""$(libdir)"\" if EMBED_HELP AM_CPPFLAGS += -I$(top_builddir)/doc/man endif -AM_CFLAGS = -fno-strict-aliasing - bin_PROGRAMS = lttng-sessiond lttng_sessiond_SOURCES = utils.c utils.h \ @@ -34,22 +31,38 @@ lttng_sessiond_SOURCES = utils.c utils.h \ agent.c agent.h \ save.h save.c \ load-session-thread.h load-session-thread.c \ - syscall.h syscall.c \ + lttng-syscall.h lttng-syscall.c \ notification-thread.h notification-thread.c \ + notification-thread-internal.h \ notification-thread-commands.h notification-thread-commands.c \ - notification-thread-events.h notification-thread-events.c + notification-thread-events.h notification-thread-events.c \ + sessiond-config.h sessiond-config.c \ + rotate.h rotate.c \ + rotation-thread.h rotation-thread.c \ + timer.c timer.h \ + ready.c \ + globals.c \ + thread-utils.c \ + process-utils.c \ + thread.c thread.h \ + health.c \ + client.c client.h \ + dispatch.c dispatch.h \ + register.c register.h \ + manage-apps.c manage-apps.h if HAVE_LIBLTTNG_UST_CTL lttng_sessiond_SOURCES += trace-ust.c ust-registry.c ust-app.c \ ust-consumer.c ust-consumer.h ust-thread.c \ - ust-metadata.c ust-clock.h agent-thread.c agent-thread.h + ust-metadata.c ust-clock.h agent-thread.c agent-thread.h \ + ust-field-utils.h ust-field-utils.c endif # Add main.c at the end for compile order lttng_sessiond_SOURCES += lttng-sessiond.h main.c # link on liblttngctl for check if sessiond is already alive. -lttng_sessiond_LDADD = -lurcu-common -lurcu \ +lttng_sessiond_LDADD = -lurcu-common -lurcu $(KMOD_LIBS) \ $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \ $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \ $(top_builddir)/src/common/kernel-ctl/libkernel-ctl.la \