mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r12143] Purpose:
Bug fix Description: make check-clean didn't clean results of example tests Solution: Fixed Makefiles so that check-clean recurses into example directories. Also a little Makefile cleanup. Platforms tested: mir, modi4, heping, copper
This commit is contained in:
parent
15f0a2e95c
commit
524d25498f
23
Makefile.am
23
Makefile.am
@ -84,19 +84,20 @@ test _test: check
|
||||
|
||||
lib progs check-p check-s:
|
||||
@@SETX@; for d in $(SUBDIRS); do \
|
||||
if test $$d != .; then \
|
||||
if test $$d != .; then \
|
||||
(cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Make all, tests, and (un)install also recurse into perform directory
|
||||
all-local:
|
||||
@cd perform && $(MAKE) $(AM_MAKEFLAGS) all
|
||||
tests check-clean:
|
||||
|
||||
tests:
|
||||
@@SETX@; for d in $(SUBDIRS) perform; do \
|
||||
if test $$d != .; then \
|
||||
if test $$d != .; then \
|
||||
(cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
install-exec-local:
|
||||
@ -104,12 +105,20 @@ install-exec-local:
|
||||
uninstall-local:
|
||||
@cd perform && $(MAKE) $(AM_MAKEFLAGS) uninstall
|
||||
|
||||
# Check-clean also recurses into examples directory
|
||||
check-clean:
|
||||
@@SETX@; for d in $(SUBDIRS) examples perform; do \
|
||||
if test $$d != .; then \
|
||||
(cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Some C++ compilers/linkers will create a directory named ii_files in
|
||||
# the root directory, which should be cleaned.
|
||||
mostlyclean-local:
|
||||
if test -d ii_files; then \
|
||||
$(RM) -rf ii_files; \
|
||||
fi
|
||||
$(RM) -rf ii_files; \
|
||||
fi
|
||||
|
||||
# 'make install-all' also installs examples
|
||||
install-all:
|
||||
|
23
Makefile.in
23
Makefile.in
@ -805,19 +805,20 @@ test _test: check
|
||||
|
||||
lib progs check-p check-s:
|
||||
@@SETX@; for d in $(SUBDIRS); do \
|
||||
if test $$d != .; then \
|
||||
if test $$d != .; then \
|
||||
(cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Make all, tests, and (un)install also recurse into perform directory
|
||||
all-local:
|
||||
@cd perform && $(MAKE) $(AM_MAKEFLAGS) all
|
||||
tests check-clean:
|
||||
|
||||
tests:
|
||||
@@SETX@; for d in $(SUBDIRS) perform; do \
|
||||
if test $$d != .; then \
|
||||
if test $$d != .; then \
|
||||
(cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
install-exec-local:
|
||||
@ -825,12 +826,20 @@ install-exec-local:
|
||||
uninstall-local:
|
||||
@cd perform && $(MAKE) $(AM_MAKEFLAGS) uninstall
|
||||
|
||||
# Check-clean also recurses into examples directory
|
||||
check-clean:
|
||||
@@SETX@; for d in $(SUBDIRS) examples perform; do \
|
||||
if test $$d != .; then \
|
||||
(cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Some C++ compilers/linkers will create a directory named ii_files in
|
||||
# the root directory, which should be cleaned.
|
||||
mostlyclean-local:
|
||||
if test -d ii_files; then \
|
||||
$(RM) -rf ii_files; \
|
||||
fi
|
||||
$(RM) -rf ii_files; \
|
||||
fi
|
||||
|
||||
# 'make install-all' also installs examples
|
||||
install-all:
|
||||
|
@ -29,11 +29,16 @@ DIST_SUBDIRS = src test 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
|
||||
|
@ -660,13 +660,18 @@ check-install: installcheck
|
||||
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
|
||||
|
||||
# lib/progs/tests targets recurse into subdirectories. build-* targets
|
||||
# build files in this directory.
|
||||
build-lib: $(LIB)
|
||||
@ -693,6 +698,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -712,6 +718,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -602,6 +602,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -621,6 +622,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -787,6 +787,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -806,6 +807,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -677,6 +677,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -696,6 +697,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -52,6 +52,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -71,6 +72,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -615,6 +615,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -634,6 +635,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -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
|
||||
|
@ -669,13 +669,18 @@ check-install: installcheck
|
||||
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
|
||||
|
||||
# lib/progs/tests targets recurse into subdirectories. build-* targets
|
||||
# build files in this directory.
|
||||
build-lib: $(LIB)
|
||||
@ -702,6 +707,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -721,6 +727,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -629,6 +629,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -648,6 +649,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -916,6 +916,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -935,6 +936,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -849,6 +849,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -868,6 +869,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -644,6 +644,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -663,6 +664,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -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
|
||||
|
@ -666,13 +666,20 @@ check-install: installcheck
|
||||
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:
|
||||
|
||||
# lib/progs/tests targets recurse into subdirectories. build-* targets
|
||||
# build files in this directory.
|
||||
build-lib: $(LIB)
|
||||
@ -699,6 +706,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -718,6 +726,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -26,11 +26,16 @@ DIST_SUBDIRS=src test 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
|
||||
|
@ -660,13 +660,18 @@ check-install: installcheck
|
||||
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
|
||||
|
||||
# lib/progs/tests targets recurse into subdirectories. build-* targets
|
||||
# build files in this directory.
|
||||
build-lib: $(LIB)
|
||||
@ -693,6 +698,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -712,6 +718,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -591,6 +591,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -610,6 +611,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -701,6 +701,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -720,6 +721,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -651,6 +651,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -670,6 +671,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -621,6 +621,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -640,6 +641,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -31,11 +31,16 @@ DIST_SUBDIRS=src test 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
|
||||
|
@ -664,13 +664,18 @@ check-install: installcheck
|
||||
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
|
||||
|
||||
# lib/progs/tests targets recurse into subdirectories. build-* targets
|
||||
# build files in this directory.
|
||||
build-lib: $(LIB)
|
||||
@ -697,6 +702,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -716,6 +722,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -592,6 +592,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -611,6 +612,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -735,6 +735,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -754,6 +755,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -654,6 +654,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -673,6 +674,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -704,6 +704,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -723,6 +724,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -686,6 +686,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -705,6 +706,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -684,6 +684,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -703,6 +704,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -689,6 +689,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -708,6 +709,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -735,6 +735,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -754,6 +755,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -1045,6 +1045,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -1064,6 +1065,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -1222,6 +1222,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -1241,6 +1242,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -702,6 +702,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -721,6 +722,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -684,6 +684,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -703,6 +704,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -726,6 +726,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -745,6 +746,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -700,6 +700,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -719,6 +720,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -693,6 +693,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -712,6 +713,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -720,6 +720,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -739,6 +740,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -673,6 +673,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -692,6 +693,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -750,6 +750,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -769,6 +770,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -683,6 +683,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -702,6 +703,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
@ -778,6 +778,7 @@ check-clean ::
|
||||
(set -x; cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Tell Automake to build tests when the user types `make all' (this is
|
||||
# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
|
||||
# Automake won't build them automatically, either.
|
||||
@ -797,6 +798,9 @@ build-check-clean:
|
||||
# run check-clean whenever mostlyclean is run
|
||||
mostlyclean-local: build-check-clean
|
||||
|
||||
# check-install is just a synonym for installcheck
|
||||
@$(MAKE) $(AM_MAKEFLAGS) installcheck
|
||||
|
||||
# Run each test in order, passing $(TEST_FLAGS) to the program.
|
||||
# Since tests are done in a shell loop, "make -i" does apply inside it.
|
||||
# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
|
||||
|
Loading…
x
Reference in New Issue
Block a user