summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2006-03-23 21:26:17 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2006-03-23 21:26:17 (GMT)
commit93aa12407f5b7cbfdb69a8c324fef6b18ea45e16 (patch)
treebccb25e38f50fca798f13689915b4a87f944a6bd
parentb22b47ced52e18aa16fd5347d1333f7c7aaa82af (diff)
downloadhdf5-93aa12407f5b7cbfdb69a8c324fef6b18ea45e16.zip
hdf5-93aa12407f5b7cbfdb69a8c324fef6b18ea45e16.tar.gz
hdf5-93aa12407f5b7cbfdb69a8c324fef6b18ea45e16.tar.bz2
[svn-r12149] Purpose:
Bug fix Description: Previous checkin did a bad thing; 'make clean' failed in example directories. Solution: Fixed commence.am so that examples no longer break, and fixed a mistake in conclude.am. Platforms tested: heping (minor makefile change) Misc. update:
-rwxr-xr-xMakefile.am3
-rw-r--r--Makefile.in9
-rw-r--r--c++/Makefile.in8
-rw-r--r--c++/examples/Makefile.in8
-rw-r--r--c++/src/Makefile.in8
-rw-r--r--c++/test/Makefile.in8
-rw-r--r--config/commence.am6
-rw-r--r--config/conclude.am2
-rw-r--r--examples/Makefile.in8
-rw-r--r--fortran/Makefile.in8
-rw-r--r--fortran/examples/Makefile.in8
-rw-r--r--fortran/src/Makefile.in8
-rw-r--r--fortran/test/Makefile.in8
-rw-r--r--fortran/testpar/Makefile.in8
-rwxr-xr-xhl/Makefile.in8
-rw-r--r--hl/c++/Makefile.in8
-rw-r--r--hl/c++/examples/Makefile.in8
-rw-r--r--hl/c++/src/Makefile.in8
-rw-r--r--hl/c++/test/Makefile.in8
-rw-r--r--hl/examples/Makefile.in8
-rw-r--r--hl/fortran/Makefile.in8
-rw-r--r--hl/fortran/examples/Makefile.in8
-rw-r--r--hl/fortran/src/Makefile.in8
-rw-r--r--hl/fortran/test/Makefile.in8
-rw-r--r--hl/src/Makefile.in8
-rw-r--r--hl/test/Makefile.in8
-rw-r--r--hl/tools/Makefile.in8
-rw-r--r--hl/tools/gif2h5/Makefile.in8
-rw-r--r--perform/Makefile.in8
-rw-r--r--src/Makefile.in8
-rw-r--r--test/Makefile.in8
-rw-r--r--testpar/Makefile.in8
-rw-r--r--tools/Makefile.in8
-rw-r--r--tools/h5diff/Makefile.in8
-rw-r--r--tools/h5dump/Makefile.in8
-rwxr-xr-xtools/h5import/Makefile.in8
-rw-r--r--tools/h5jam/Makefile.in8
-rw-r--r--tools/h5ls/Makefile.in8
-rw-r--r--tools/h5repack/Makefile.in8
-rw-r--r--tools/lib/Makefile.in8
-rw-r--r--tools/misc/Makefile.in8
41 files changed, 44 insertions, 272 deletions
diff --git a/Makefile.am b/Makefile.am
index 654b5c9..45d1982 100755
--- a/Makefile.am
+++ b/Makefile.am
@@ -146,6 +146,9 @@ uninstall-doc:
installcheck-local:
@(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1;
+# check-install is just a synonym for installcheck
+check-install: installcheck
+
# Only source files in the src directory include tracing information,
# so 'make trace' only needs to recurse into that directory.
trace:
diff --git a/Makefile.in b/Makefile.in
index a61e626..0b53cbb 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -785,12 +785,6 @@ uninstall-info: uninstall-info-recursive
uninstall-local
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -867,6 +861,9 @@ uninstall-doc:
installcheck-local:
@(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1;
+# check-install is just a synonym for installcheck
+check-install: installcheck
+
# Only source files in the src directory include tracing information,
# so 'make trace' only needs to recurse into that directory.
trace:
diff --git a/c++/Makefile.in b/c++/Makefile.in
index 9888fac..9f8e558 100644
--- a/c++/Makefile.in
+++ b/c++/Makefile.in
@@ -642,12 +642,6 @@ uninstall-info: uninstall-info-recursive
tags tags-recursive uninstall uninstall-am uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -719,7 +713,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in
index 68421e5..8b84eb2 100644
--- a/c++/examples/Makefile.in
+++ b/c++/examples/Makefile.in
@@ -516,12 +516,6 @@ uninstall-am: uninstall-info-am uninstall-local
uninstall-local
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -623,7 +617,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in
index 1bb4e67..18ab3b6 100644
--- a/c++/src/Makefile.in
+++ b/c++/src/Makefile.in
@@ -739,12 +739,6 @@ uninstall-am: uninstall-binSCRIPTS uninstall-includeHEADERS \
uninstall-info-am uninstall-libLTLIBRARIES
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -808,7 +802,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in
index cddcfad..41b468d 100644
--- a/c++/test/Makefile.in
+++ b/c++/test/Makefile.in
@@ -629,12 +629,6 @@ uninstall-am: uninstall-info-am
pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -698,7 +692,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/config/commence.am b/config/commence.am
index 3c6eec9..6d2f1eb 100644
--- a/config/commence.am
+++ b/config/commence.am
@@ -96,12 +96,6 @@ AUTOCONF=/afs/ncsa/projects/hdf/packages/autoconf_2.59/Linux_2.4/bin/autoconf
# *.clog are from the MPE option.
CHECK_CLEANFILES=*.chkexe *.chklog *.clog
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
diff --git a/config/conclude.am b/config/conclude.am
index 4fcc27f..ad33c81 100644
--- a/config/conclude.am
+++ b/config/conclude.am
@@ -73,7 +73,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/examples/Makefile.in b/examples/Makefile.in
index 053fe28..9cda312 100644
--- a/examples/Makefile.in
+++ b/examples/Makefile.in
@@ -520,12 +520,6 @@ uninstall-am: uninstall-info-am uninstall-local
uninstall-local
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -636,7 +630,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/fortran/Makefile.in b/fortran/Makefile.in
index 9e18ebb..40377fa 100644
--- a/fortran/Makefile.in
+++ b/fortran/Makefile.in
@@ -651,12 +651,6 @@ uninstall-info: uninstall-info-recursive
tags tags-recursive uninstall uninstall-am uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -728,7 +722,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/fortran/examples/Makefile.in b/fortran/examples/Makefile.in
index 9699858..683996f 100644
--- a/fortran/examples/Makefile.in
+++ b/fortran/examples/Makefile.in
@@ -527,12 +527,6 @@ uninstall-am: uninstall-info-am uninstall-local
uninstall-local
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -650,7 +644,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in
index 976030a..3f94a1e 100644
--- a/fortran/src/Makefile.in
+++ b/fortran/src/Makefile.in
@@ -803,12 +803,6 @@ uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES \
uninstall-settingsDATA
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -937,7 +931,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/fortran/test/Makefile.in b/fortran/test/Makefile.in
index 6169cb0..1915660 100644
--- a/fortran/test/Makefile.in
+++ b/fortran/test/Makefile.in
@@ -806,12 +806,6 @@ uninstall-am: uninstall-info-am
pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -870,7 +864,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/fortran/testpar/Makefile.in b/fortran/testpar/Makefile.in
index 1ab7abb..595fff5 100644
--- a/fortran/testpar/Makefile.in
+++ b/fortran/testpar/Makefile.in
@@ -604,12 +604,6 @@ uninstall-am: uninstall-info-am
pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -665,7 +659,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/hl/Makefile.in b/hl/Makefile.in
index 4390200..7e6629d 100755
--- a/hl/Makefile.in
+++ b/hl/Makefile.in
@@ -648,12 +648,6 @@ uninstall-info: uninstall-info-recursive
tags tags-recursive uninstall uninstall-am uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -727,7 +721,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/hl/c++/Makefile.in b/hl/c++/Makefile.in
index e1d8ceb..d57a8b3 100644
--- a/hl/c++/Makefile.in
+++ b/hl/c++/Makefile.in
@@ -642,12 +642,6 @@ uninstall-info: uninstall-info-recursive
tags tags-recursive uninstall uninstall-am uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -719,7 +713,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/hl/c++/examples/Makefile.in b/hl/c++/examples/Makefile.in
index 25885bd..2332adf 100644
--- a/hl/c++/examples/Makefile.in
+++ b/hl/c++/examples/Makefile.in
@@ -514,12 +514,6 @@ uninstall-am: uninstall-info-am uninstall-local
uninstall-local
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -612,7 +606,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/hl/c++/src/Makefile.in b/hl/c++/src/Makefile.in
index dae8515..89296c2 100644
--- a/hl/c++/src/Makefile.in
+++ b/hl/c++/src/Makefile.in
@@ -661,12 +661,6 @@ uninstall-am: uninstall-includeHEADERS uninstall-info-am \
uninstall-libLTLIBRARIES
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -722,7 +716,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/hl/c++/test/Makefile.in b/hl/c++/test/Makefile.in
index c98a2e9..4aeb064 100644
--- a/hl/c++/test/Makefile.in
+++ b/hl/c++/test/Makefile.in
@@ -611,12 +611,6 @@ uninstall-am: uninstall-info-am
pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -672,7 +666,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/hl/examples/Makefile.in b/hl/examples/Makefile.in
index d044b4f..3a48602 100644
--- a/hl/examples/Makefile.in
+++ b/hl/examples/Makefile.in
@@ -521,12 +521,6 @@ uninstall-am: uninstall-info-am uninstall-local
uninstall-local
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -642,7 +636,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/hl/fortran/Makefile.in b/hl/fortran/Makefile.in
index 7812030..51dfe3d 100644
--- a/hl/fortran/Makefile.in
+++ b/hl/fortran/Makefile.in
@@ -646,12 +646,6 @@ uninstall-info: uninstall-info-recursive
tags tags-recursive uninstall uninstall-am uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -723,7 +717,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/hl/fortran/examples/Makefile.in b/hl/fortran/examples/Makefile.in
index f535083..14b34db 100644
--- a/hl/fortran/examples/Makefile.in
+++ b/hl/fortran/examples/Makefile.in
@@ -520,12 +520,6 @@ uninstall-am: uninstall-info-am uninstall-local
uninstall-local
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -613,7 +607,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/hl/fortran/src/Makefile.in b/hl/fortran/src/Makefile.in
index fa0f8ff..e73d461 100644
--- a/hl/fortran/src/Makefile.in
+++ b/hl/fortran/src/Makefile.in
@@ -664,12 +664,6 @@ uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES \
uninstall-libLTLIBRARIES uninstall-local
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -756,7 +750,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/hl/fortran/test/Makefile.in b/hl/fortran/test/Makefile.in
index e757955..521d214 100644
--- a/hl/fortran/test/Makefile.in
+++ b/hl/fortran/test/Makefile.in
@@ -614,12 +614,6 @@ uninstall-am: uninstall-info-am
pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -675,7 +669,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/hl/src/Makefile.in b/hl/src/Makefile.in
index fe1df2e..a51a244 100644
--- a/hl/src/Makefile.in
+++ b/hl/src/Makefile.in
@@ -660,12 +660,6 @@ uninstall-am: uninstall-includeHEADERS uninstall-info-am \
uninstall-libLTLIBRARIES
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -725,7 +719,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/hl/test/Makefile.in b/hl/test/Makefile.in
index ab6f5a0..14b3fcc 100644
--- a/hl/test/Makefile.in
+++ b/hl/test/Makefile.in
@@ -646,12 +646,6 @@ uninstall-am: uninstall-info-am
pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -707,7 +701,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/hl/tools/Makefile.in b/hl/tools/Makefile.in
index 446bf7d..64d704b 100644
--- a/hl/tools/Makefile.in
+++ b/hl/tools/Makefile.in
@@ -644,12 +644,6 @@ uninstall-info: uninstall-info-recursive
uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -705,7 +699,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/hl/tools/gif2h5/Makefile.in b/hl/tools/gif2h5/Makefile.in
index 1c6556d..fbd61ba 100644
--- a/hl/tools/gif2h5/Makefile.in
+++ b/hl/tools/gif2h5/Makefile.in
@@ -649,12 +649,6 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-am
uninstall-binPROGRAMS uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -710,7 +704,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/perform/Makefile.in b/perform/Makefile.in
index 129022c..275a0f1 100644
--- a/perform/Makefile.in
+++ b/perform/Makefile.in
@@ -695,12 +695,6 @@ uninstall-am: uninstall-info-am
pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -756,7 +750,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/src/Makefile.in b/src/Makefile.in
index 02912d7..95856b5 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -967,12 +967,6 @@ uninstall-am: uninstall-includeHEADERS uninstall-info-am \
uninstall-libLTLIBRARIES uninstall-settingsDATA
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -1066,7 +1060,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/test/Makefile.in b/test/Makefile.in
index 69eeaf7..2754b43 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -1170,12 +1170,6 @@ uninstall-am: uninstall-info-am
uninstall-am uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -1243,7 +1237,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/testpar/Makefile.in b/testpar/Makefile.in
index aeddf31..950e7f4 100644
--- a/testpar/Makefile.in
+++ b/testpar/Makefile.in
@@ -662,12 +662,6 @@ uninstall-am: uninstall-info-am
pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -723,7 +717,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/tools/Makefile.in b/tools/Makefile.in
index 9aebf64..4649e79 100644
--- a/tools/Makefile.in
+++ b/tools/Makefile.in
@@ -644,12 +644,6 @@ uninstall-info: uninstall-info-recursive
uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -705,7 +699,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/tools/h5diff/Makefile.in b/tools/h5diff/Makefile.in
index 7702cef..4566cf6 100644
--- a/tools/h5diff/Makefile.in
+++ b/tools/h5diff/Makefile.in
@@ -686,12 +686,6 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-am
uninstall-am uninstall-binPROGRAMS uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -747,7 +741,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/tools/h5dump/Makefile.in b/tools/h5dump/Makefile.in
index 28df9a4..2058e99 100644
--- a/tools/h5dump/Makefile.in
+++ b/tools/h5dump/Makefile.in
@@ -660,12 +660,6 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-am
uninstall-am uninstall-binPROGRAMS uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -721,7 +715,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/tools/h5import/Makefile.in b/tools/h5import/Makefile.in
index 3897860..c6cb439 100755
--- a/tools/h5import/Makefile.in
+++ b/tools/h5import/Makefile.in
@@ -653,12 +653,6 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-am
uninstall-am uninstall-binPROGRAMS uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -714,7 +708,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/tools/h5jam/Makefile.in b/tools/h5jam/Makefile.in
index e1aed93..79e116d 100644
--- a/tools/h5jam/Makefile.in
+++ b/tools/h5jam/Makefile.in
@@ -680,12 +680,6 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-am
uninstall-am uninstall-binPROGRAMS uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -741,7 +735,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/tools/h5ls/Makefile.in b/tools/h5ls/Makefile.in
index bcd1dca..13fe9e3 100644
--- a/tools/h5ls/Makefile.in
+++ b/tools/h5ls/Makefile.in
@@ -633,12 +633,6 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-am
uninstall-binPROGRAMS uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -694,7 +688,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/tools/h5repack/Makefile.in b/tools/h5repack/Makefile.in
index 0398689..5394cca 100644
--- a/tools/h5repack/Makefile.in
+++ b/tools/h5repack/Makefile.in
@@ -710,12 +710,6 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-am
uninstall-binPROGRAMS uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -771,7 +765,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/tools/lib/Makefile.in b/tools/lib/Makefile.in
index f65ccda..1ecc413 100644
--- a/tools/lib/Makefile.in
+++ b/tools/lib/Makefile.in
@@ -643,12 +643,6 @@ uninstall-am: uninstall-info-am
pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -704,7 +698,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.
diff --git a/tools/misc/Makefile.in b/tools/misc/Makefile.in
index ca6c812..6a9a81c 100644
--- a/tools/misc/Makefile.in
+++ b/tools/misc/Makefile.in
@@ -729,12 +729,6 @@ uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \
uninstall-info-am uninstall-local
-# check-install is a synonym for installcheck.
-# Add this build rule here (rather than in conclude.am, where build rules
-# normally go) because it should be included in the top-level Makefile.am
-# as well.
-check-install: installcheck
-
# List all build rules defined by HDF5 Makefiles as "PHONY" targets here.
# This tells the Makefiles that these targets are not files to be built but
# commands that should be executed even if a file with the same name already
@@ -799,7 +793,7 @@ build-check-clean:
mostlyclean-local: build-check-clean
# check-install is just a synonym for installcheck
- @$(MAKE) $(AM_MAKEFLAGS) installcheck
+check-install: 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.