X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-relayd%2FMakefile.am;h=f6d5b29501f17295dcc9fc1e0e8641b502be6710;hp=65e3d675c012b352dca06ea1f04c596cb6879f47;hb=62b7418e09fbce6c2f9ea5cf237c980a849c58fe;hpb=2f8f53af90479595d530f8f02e71dd0b9fb810ee diff --git a/src/bin/lttng-relayd/Makefile.am b/src/bin/lttng-relayd/Makefile.am index 65e3d675c..f6d5b2950 100644 --- a/src/bin/lttng-relayd/Makefile.am +++ b/src/bin/lttng-relayd/Makefile.am @@ -1,30 +1,40 @@ -AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src \ - -DINSTALL_BIN_PATH=\""$(lttnglibexecdir)"\" \ - -DINSTALL_LIB_PATH=\""$(libdir)"\" +# SPDX-License-Identifier: GPL-2.0-only -AM_CFLAGS = -fno-strict-aliasing +AM_CPPFLAGS += -DINSTALL_BIN_PATH=\""$(lttnglibexecdir)"\" \ + -DINSTALL_LIB_PATH=\""$(libdir)"\" + +if EMBED_HELP +AM_CPPFLAGS += -I$(top_builddir)/doc/man +endif bin_PROGRAMS = lttng-relayd lttng_relayd_SOURCES = main.c lttng-relayd.h utils.h utils.c cmd.h \ index.c index.h live.c live.h ctf-trace.c ctf-trace.h \ - cmd-generic.c cmd-generic.h \ cmd-2-1.c cmd-2-1.h \ cmd-2-2.c cmd-2-2.h \ cmd-2-4.c cmd-2-4.h \ + cmd-2-11.c cmd-2-11.h \ health-relayd.c health-relayd.h \ lttng-viewer-abi.h testpoint.h \ viewer-stream.h viewer-stream.c \ - session.c session.h + session.c session.h \ + stream.c stream.h \ + connection.c connection.h \ + viewer-session.c viewer-session.h \ + tracefile-array.c tracefile-array.h \ + tcp_keep_alive.c tcp_keep_alive.h \ + sessiond-trace-chunks.c sessiond-trace-chunks.h \ + backward-compatibility-group-by.c backward-compatibility-group-by.h # link on liblttngctl for check if relayd is already alive. -lttng_relayd_LDADD = -lrt -lurcu-common -lurcu \ - $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \ +lttng_relayd_LDADD = $(URCU_LIBS) \ + $(top_builddir)/src/common/libcommon.la \ $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \ $(top_builddir)/src/common/hashtable/libhashtable.la \ - $(top_builddir)/src/common/libcommon.la \ $(top_builddir)/src/common/compat/libcompat.la \ $(top_builddir)/src/common/index/libindex.la \ $(top_builddir)/src/common/health/libhealth.la \ $(top_builddir)/src/common/config/libconfig.la \ - $(top_builddir)/src/common/testpoint/libtestpoint.la + $(top_builddir)/src/common/testpoint/libtestpoint.la \ + $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la