X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Fregression%2Ftools%2Fstreaming%2FMakefile.am;h=6519670dec128815e561be2725c2c3f4d3913a1b;hp=2dbb4d5ab48f45ce04ee937e40cc6ab8b80857b2;hb=c83e7ca00efd681ec2406d2a2b2622d373ae2647;hpb=7ed34c821a1b9941c0dffe8698967aeb5e375f00 diff --git a/tests/regression/tools/streaming/Makefile.am b/tests/regression/tools/streaming/Makefile.am index 2dbb4d5ab..6519670de 100644 --- a/tests/regression/tools/streaming/Makefile.am +++ b/tests/regression/tools/streaming/Makefile.am @@ -1,18 +1,16 @@ -AM_CFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src -I$(top_srcdir)/tests/utils -I$(srcdir) -O2 -g -AM_LDFLAGS = +noinst_SCRIPTS = test_ust test_kernel test_high_throughput_limits +EXTRA_DIST = test_ust test_kernel test_high_throughput_limits -if LTTNG_TOOLS_BUILD_WITH_LIBDL -AM_LDFLAGS += -ldl -endif -if LTTNG_TOOLS_BUILD_WITH_LIBC_DL -AM_LDFLAGS += -lc -endif +all-local: + @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + for script in $(EXTRA_DIST); do \ + cp -f $(srcdir)/$$script $(builddir); \ + done; \ + fi -if HAVE_LIBLTTNG_UST_CTL -noinst_PROGRAMS = gen-ust-events -gen_ust_events_SOURCES = gen-ust-events.c tp.c tp.h -gen_ust_events_LDADD = -llttng-ust -endif - -noinst_SCRIPTS = test_ust test_kernel test_uri_switch test_high_throughput_limits -EXTRA_DIST = test_ust test_kernel test_uri_switch test_high_throughput_limits +clean-local: + @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + for script in $(EXTRA_DIST); do \ + rm -f $(builddir)/$$script; \ + done; \ + fi