Tests: Add health check thread exit test
[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 lib_LTLIBRARIES=libhealthexit.la
14
15 # Health thread exit ld_preloaded test lib
16 libhealthexit_la_SOURCES=health_exit.c
17 libhealthexit_la_LDFLAGS= -module
18
19 noinst_PROGRAMS = health_check
20
21 health_check_SOURCES = health_check.c $(UTILS)
22 health_check_LDADD = $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
23 $(top_builddir)/src/common/libcommon.la
24
25 noinst_SCRIPTS =
26 EXTRA_DIST =
This page took 0.029609 seconds and 4 git commands to generate.