diff options
Diffstat (limited to 'fortran/Makefile.am')
-rw-r--r-- | fortran/Makefile.am | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/fortran/Makefile.am b/fortran/Makefile.am index f810e3b..26ae267 100644 --- a/fortran/Makefile.am +++ b/fortran/Makefile.am @@ -40,12 +40,16 @@ DIST_SUBDIRS=src test testpar examples install-examples uninstall-examples: @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; - -# Check that examples can be successfully built -check-install: - @$(MAKE) $(AM_MAKEFLAGS) installcheck - installcheck-local: @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; +# Clean examples when check-clean is invoked +check-clean :: + @$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1; + @for d in X $(SUBDIRS) examples; do \ + if test $$d != X && test $$d != .; then \ + (set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + include $(top_srcdir)/config/conclude.am |