summaryrefslogtreecommitdiffstats
path: root/tools/h5copy/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'tools/h5copy/Makefile.in')
-rw-r--r--tools/h5copy/Makefile.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/h5copy/Makefile.in b/tools/h5copy/Makefile.in
index 8860b86..3d803ac 100644
--- a/tools/h5copy/Makefile.in
+++ b/tools/h5copy/Makefile.in
@@ -819,13 +819,14 @@ build-check-p: $(LIB) $(PROGS) $(TESTS)
fi
# Run test with different Virtual File Driver
-check-vfd:
+check-vfd: $(LIB) $(PROGS) $(TESTS)
@for vfd in $(VFD_LIST) dummy; do \
if test $$vfd != dummy; then \
echo "============================"; \
echo "Testing Virtual File Driver $$vfd"; \
echo "============================"; \
- HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check; \
+ $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \
+ HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \
fi; \
done
# Tell versions [3.59,3.63) of GNU make to not export all variables.