Commit | Line | Data |
---|---|---|
74130cb7 PC |
1 | AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src \ |
2 | -DINSTALL_BIN_PATH=\""$(lttnglibexecdir)"\" \ | |
b8aa1682 JD |
3 | -DINSTALL_LIB_PATH=\""$(libdir)"\" |
4 | ||
5 | AM_CFLAGS = -fno-strict-aliasing | |
6 | ||
7 | bin_PROGRAMS = lttng-relayd | |
8 | ||
9 | lttng_relayd_SOURCES = main.c lttng-relayd.h | |
10 | ||
11 | # link on liblttngctl for check if relayd is already alive. | |
12 | lttng_relayd_LDADD = -lrt -lurcu-common -lurcu \ | |
13 | $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \ | |
14 | $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \ | |
15 | $(top_builddir)/src/common/hashtable/libhashtable.la \ | |
16 | $(top_builddir)/src/common/libcommon.la \ | |
17 | $(top_builddir)/src/common/compat/libcompat.la |