diff options
Diffstat (limited to 'hl/Makefile.am')
-rw-r--r-- | hl/Makefile.am | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/hl/Makefile.am b/hl/Makefile.am index 77dd458..d462a3d 100644 --- a/hl/Makefile.am +++ b/hl/Makefile.am @@ -44,11 +44,18 @@ DIST_SUBDIRS=src test tools c++ fortran 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 + +build-check-clean: + include $(top_srcdir)/config/conclude.am |