X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=tests%2Futils%2FMakefile.am;h=b3d5929738f4d8c7d92b929763685ca3cda8c717;hb=67b4c664e2c6c6dc19920555c0abf094ed6cbe00;hp=feae65a58ada4ea328b6c846a3798168e7ace37b;hpb=5d2e1e66a968d9e555f9b8b00d0589ebfaf3de32;p=lttng-tools.git diff --git a/tests/utils/Makefile.am b/tests/utils/Makefile.am index feae65a58..b3d592973 100644 --- a/tests/utils/Makefile.am +++ b/tests/utils/Makefile.am @@ -1 +1,18 @@ -SUBDIRS = tap +SUBDIRS = tap testapp + +EXTRA_DIST = utils.sh test_utils.py babelstats.pl +dist_noinst_SCRIPTS = utils.sh test_utils.py babelstats.pl + +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