X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Fregression%2Fust%2Fhigh-throughput%2FMakefile.am;h=6e9c89e14d1e043bc99a2ca2e95fb473441b5676;hp=cff8fe423051fb8c9f06e7a49ecf730a03d17d6d;hb=504d4ace8d2c38787fe40b7e74cbb932cb7f3d89;hpb=9ac429ef32142eaecfec2d1a44569464c4f8f721 diff --git a/tests/regression/ust/high-throughput/Makefile.am b/tests/regression/ust/high-throughput/Makefile.am index cff8fe423..6e9c89e14 100644 --- a/tests/regression/ust/high-throughput/Makefile.am +++ b/tests/regression/ust/high-throughput/Makefile.am @@ -12,5 +12,19 @@ noinst_PROGRAMS = gen-events gen_events_SOURCES = main.c tp.c tp.h gen_events_LDADD = -llttng-ust -noinst_SCRIPTS = run -EXTRA_DIST = run +noinst_SCRIPTS = test_high_throughput +EXTRA_DIST = test_high_throughput + +all-local: + @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + for script in $(EXTRA_DIST); do \ + cp -f $(srcdir)/$$script $(builddir); \ + done; \ + fi + +clean-local: + @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + for script in $(EXTRA_DIST); do \ + rm -f $(builddir)/$$script; \ + done; \ + fi