Add --enable-embedded-help option to embed --help messages in binaries
[lttng-tools.git] / src / bin / lttng-relayd / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src \
2 -DINSTALL_BIN_PATH=\""$(lttnglibexecdir)"\" \
3 -DINSTALL_LIB_PATH=\""$(libdir)"\"
4
5 if EMBED_HELP
6 AM_CPPFLAGS += -I$(top_builddir)/doc/man
7 endif
8
9 AM_CFLAGS = -fno-strict-aliasing
10
11 bin_PROGRAMS = lttng-relayd
12
13 lttng_relayd_SOURCES = main.c lttng-relayd.h utils.h utils.c cmd.h \
14 index.c index.h live.c live.h ctf-trace.c ctf-trace.h \
15 cmd-generic.c cmd-generic.h \
16 cmd-2-1.c cmd-2-1.h \
17 cmd-2-2.c cmd-2-2.h \
18 cmd-2-4.c cmd-2-4.h \
19 health-relayd.c health-relayd.h \
20 lttng-viewer-abi.h testpoint.h \
21 viewer-stream.h viewer-stream.c \
22 session.c session.h \
23 stream.c stream.h \
24 stream-fd.c stream-fd.h \
25 connection.c connection.h \
26 viewer-session.c viewer-session.h \
27 tracefile-array.c tracefile-array.h
28
29 # link on liblttngctl for check if relayd is already alive.
30 lttng_relayd_LDADD = -lurcu-common -lurcu \
31 $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \
32 $(top_builddir)/src/common/hashtable/libhashtable.la \
33 $(top_builddir)/src/common/libcommon.la \
34 $(top_builddir)/src/common/compat/libcompat.la \
35 $(top_builddir)/src/common/index/libindex.la \
36 $(top_builddir)/src/common/health/libhealth.la \
37 $(top_builddir)/src/common/config/libconfig.la \
38 $(top_builddir)/src/common/testpoint/libtestpoint.la \
39 $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la
This page took 0.030694 seconds and 5 git commands to generate.