Tests: Add a health check utility program
[lttng-tools.git] / tests / tools / health / Makefile.am
1 AM_CFLAGS = -I. -O2 -g -I../../../include
2 AM_LDFLAGS =
3
4 if LTTNG_TOOLS_BUILD_WITH_LIBDL
5 AM_LDFLAGS += -ldl
6 endif
7 if LTTNG_TOOLS_BUILD_WITH_LIBC_DL
8 AM_LDFLAGS += -lc
9 endif
10
11 UTILS=
12
13 noinst_PROGRAMS = health_check
14
15 health_check_SOURCES = health_check.c $(UTILS)
16 health_check_LDADD = $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
17 $(top_builddir)/src/common/libcommon.la
18
19 noinst_SCRIPTS =
20 EXTRA_DIST =
This page took 0.030744 seconds and 5 git commands to generate.