include $(top_srcdir)/example/Makefile.inc bin_PROGRAMS = odp_cli odp_cli_SOURCES = odp_cli.c if test_example TESTS = odp_cli_run.sh endif EXTRA_DIST = odp_cli_run.sh # If building out-of-tree, make check will not copy the scripts and data to the # $(builddir) assuming that all commands are run locally. However this prevents # running tests on a remote target using LOG_COMPILER. # So copy all script and data files explicitly here. all-local: if [ "x$(srcdir)" != "x$(builddir)" ]; then \ for f in $(EXTRA_DIST); do \ if [ -e $(srcdir)/$$f ]; then \ mkdir -p $(builddir)/$$(dirname $$f); \ cp -f $(srcdir)/$$f $(builddir)/$$f; \ fi \ done \ fi clean-local: if [ "x$(srcdir)" != "x$(builddir)" ]; then \ for f in $(EXTRA_DIST); do \ rm -f $(builddir)/$$f; \ done \ fi