## position it is declared in the output Makefile.
.DEFAULT_GOAL := all
-# Solaris 10 'make', and several other traditional 'make' implementations,
-# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it
-# by disabling -e (using the XSI extension "set +e") if it's set.
-am__sh_e_setup = case $$- in *e*) set +e;; esac
-
## Emulate VPATH rewrites. This uses only GNU make primitives, which
## allows us to avoid extra forks.
am.vpath.rewrite = \
$(if $(filter-out $(am__xfail_test_bases), \
$(patsubst $(srcdir)/%,%,$(1))),no,yes)
am__runtest = \
- $(am__sh_e_setup); \
$(am__tty_colors); \
srcdir=$(srcdir); export srcdir; \
## Creates the directory for the log file if needed. Avoid extra forks.
$(TEST_SUITE_LOG): $(am__test_logs) $(am__test_results)
$(am.setup-test-harness-workdir)
- @$(am__sh_e_setup); $(am__tty_colors); \
+ @set +e; $(am__tty_colors); \
fatal () { echo "fatal: making $@: $$*" >&2; exit 1; }; \
workdir='$(am.test-harness.workdir)'; \
## Detect a possible circular dependency, and error out if it's found.