X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Fregression%2Ftools%2Fmap%2FMakefile.am;fp=tests%2Fregression%2Ftools%2Fmap%2FMakefile.am;h=8fb83c33f4bc78e75c48cdb37f7577774a0f9e41;hp=0000000000000000000000000000000000000000;hb=ebdb334b4fdb77857d4bd7224c939f06d5d38f81;hpb=11f6ce94d8fb73f017888681aaba5d7df55fc735 diff --git a/tests/regression/tools/map/Makefile.am b/tests/regression/tools/map/Makefile.am new file mode 100644 index 000000000..8fb83c33f --- /dev/null +++ b/tests/regression/tools/map/Makefile.am @@ -0,0 +1,30 @@ +# SPDX-License-Identifier: GPL-2.0-only + +AM_CPPFLAGS += -I$(top_srcdir)/tests -I$(srcdir) + +noinst_SCRIPTS = \ + map_base_test.sh \ + test_map_kernel + +EXTRA_DIST = \ + map_base_test.sh \ + test_map_kernel + +if HAVE_LIBLTTNG_UST_CTL +EXTRA_DIST += test_map_ust +noinst_SCRIPTS += test_map_ust +endif + +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