summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2005-11-17 18:49:28 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2005-11-17 18:49:28 (GMT)
commit75ea10e5f50c3c23fd73f073adb84b0baf551edc (patch)
tree86ac2ae00334b79b7aa3d010415cc01e4e2caae4
parent706885260d43891095c910cd5975390504934c09 (diff)
downloadhdf5-75ea10e5f50c3c23fd73f073adb84b0baf551edc.zip
hdf5-75ea10e5f50c3c23fd73f073adb84b0baf551edc.tar.gz
hdf5-75ea10e5f50c3c23fd73f073adb84b0baf551edc.tar.bz2
[svn-r11737] Purpose:
Bug fix Description: Before this checkin, 'gmake check-s' would fail if there was a file in the current directory named 'check-s'. This is fixed under gmake (not sure how to fix for other makes). Solution: check, progs, install, etc. are what gmake calls "phony" targets, which means that no file should be created. These targets can be specified by a line of the form .PHONY: check progs install ... Automake adds this line for targets it knows about, but HDF5 has a lot of custom rules. This checkin adds a .PHONY line for those rules. I believe that only gmake recognizes the .PHONY line (at least, pmake doesn't seem to), but a partial solution is better than none. This error should occur very rarely anyway (the user has to manually create files with names like 'build-check-s' or '_test'). Platforms tested: mir, sleipnir, modi4
-rw-r--r--Makefile.in8
-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.am9
-rw-r--r--config/conclude.am1
-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++/src/Makefile.in8
-rw-r--r--hl/c++/test/Makefile.in8
-rw-r--r--hl/fortran/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/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/gifconv/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
37 files changed, 289 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 98c715a..8c1cfcb 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -787,6 +787,14 @@ uninstall-info: uninstall-info-recursive
# 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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# Define rules for lib, progs, check, and tests.
# These simply involve recursing into subdirectories.
test _test: check
diff --git a/c++/Makefile.in b/c++/Makefile.in
index a443524..30e56e3 100644
--- a/c++/Makefile.in
+++ b/c++/Makefile.in
@@ -644,6 +644,14 @@ uninstall-info: uninstall-info-recursive
# 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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# Install examples
install-examples uninstall-examples:
@(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1;
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in
index f27e4bd..229a15a 100644
--- a/c++/examples/Makefile.in
+++ b/c++/examples/Makefile.in
@@ -514,6 +514,14 @@ uninstall-am: uninstall-info-am uninstall-local
# 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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# Some of the examples depend on files created by running other examples
readdata.chkexe_: create.chkexe_
chunks.chkexe_: extend_ds.chkexe_
diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in
index ea70e62..f952b22 100644
--- a/c++/src/Makefile.in
+++ b/c++/src/Makefile.in
@@ -741,6 +741,14 @@ uninstall-am: uninstall-binSCRIPTS uninstall-includeHEADERS \
# 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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# Some C++ compilers/linkers (PGI?) create a directory named "ii_files" that
# holds *.ii files, which are template entity instantiations.
# This entire directory should be cleaned.
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in
index 88df2a0..d3e329d 100644
--- a/c++/test/Makefile.in
+++ b/c++/test/Makefile.in
@@ -631,6 +631,14 @@ uninstall-am: uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# Some C++ compilers/linkers (PGI?) create a directory named "ii_files" that
# holds *.ii files, which are template entity instantiations.
# This entire directory should be cleaned.
diff --git a/config/commence.am b/config/commence.am
index 39bff3c..3a7ef49 100644
--- a/config/commence.am
+++ b/config/commence.am
@@ -97,3 +97,12 @@ CHECK_CLEANFILES=*.chkexe *.chklog *.clog
# 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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
diff --git a/config/conclude.am b/config/conclude.am
index 0043dbc..479de46 100644
--- a/config/conclude.am
+++ b/config/conclude.am
@@ -26,7 +26,6 @@ PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \
$(EXTRA_PROG)
TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST)
-
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/examples/Makefile.in b/examples/Makefile.in
index e1c2e5c..c1e28de 100644
--- a/examples/Makefile.in
+++ b/examples/Makefile.in
@@ -522,6 +522,14 @@ uninstall-am: uninstall-info-am uninstall-local
# 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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# Additional dependencies for each program are listed below.
$(EXTRA_PROG): $(LIBHDF5)
@BUILD_PARALLEL_CONDITIONAL_TRUE@ $(H5CC_PP) $(CFLAGS) -o $@ $(srcdir)/$@.c;
diff --git a/fortran/Makefile.in b/fortran/Makefile.in
index a75bae7..d738cca 100644
--- a/fortran/Makefile.in
+++ b/fortran/Makefile.in
@@ -653,6 +653,14 @@ uninstall-info: uninstall-info-recursive
# 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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# Install examples
install-examples uninstall-examples:
@(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1;
diff --git a/fortran/examples/Makefile.in b/fortran/examples/Makefile.in
index 6f4370a..e89bc30 100644
--- a/fortran/examples/Makefile.in
+++ b/fortran/examples/Makefile.in
@@ -523,6 +523,14 @@ uninstall-am: uninstall-info-am uninstall-local
# 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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# Some examples depend on files created by other examples.
grpdsetexample.chkexe_: grpsexample.chkexe_
refregexample.chkexe_: refobjexample.chkexe_
diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in
index 95c723a..5498add 100644
--- a/fortran/src/Makefile.in
+++ b/fortran/src/Makefile.in
@@ -799,6 +799,14 @@ uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES \
# 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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# Fortran module files can have different extensions and different names
# (e.g., different capitalizations) on different platforms. Write rules
# for them explicitly rather than trying to teach automake about them.
diff --git a/fortran/test/Makefile.in b/fortran/test/Makefile.in
index 99077d8..5ec25d3 100644
--- a/fortran/test/Makefile.in
+++ b/fortran/test/Makefile.in
@@ -808,6 +808,14 @@ uninstall-am: uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# fflush2 depends on files created by fflush1
fflush2.chkexe_: fflush1.chkexe_
diff --git a/fortran/testpar/Makefile.in b/fortran/testpar/Makefile.in
index 8567bc4..3677dcd 100644
--- a/fortran/testpar/Makefile.in
+++ b/fortran/testpar/Makefile.in
@@ -606,6 +606,14 @@ uninstall-am: uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/hl/Makefile.in b/hl/Makefile.in
index 114b6c2..5e3a060 100755
--- a/hl/Makefile.in
+++ b/hl/Makefile.in
@@ -650,6 +650,14 @@ uninstall-info: uninstall-info-recursive
# 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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/hl/c++/Makefile.in b/hl/c++/Makefile.in
index 195d549..9c49e66 100644
--- a/hl/c++/Makefile.in
+++ b/hl/c++/Makefile.in
@@ -644,6 +644,14 @@ uninstall-info: uninstall-info-recursive
# 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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/hl/c++/src/Makefile.in b/hl/c++/src/Makefile.in
index 8df2cd2..c9552fe 100644
--- a/hl/c++/src/Makefile.in
+++ b/hl/c++/src/Makefile.in
@@ -663,6 +663,14 @@ uninstall-am: uninstall-includeHEADERS uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/hl/c++/test/Makefile.in b/hl/c++/test/Makefile.in
index d158c84..b02d907 100644
--- a/hl/c++/test/Makefile.in
+++ b/hl/c++/test/Makefile.in
@@ -613,6 +613,14 @@ uninstall-am: uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/hl/fortran/Makefile.in b/hl/fortran/Makefile.in
index f7bff26..32ba6a0 100644
--- a/hl/fortran/Makefile.in
+++ b/hl/fortran/Makefile.in
@@ -648,6 +648,14 @@ uninstall-info: uninstall-info-recursive
# 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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/hl/fortran/src/Makefile.in b/hl/fortran/src/Makefile.in
index c903b45..4946cb5 100644
--- a/hl/fortran/src/Makefile.in
+++ b/hl/fortran/src/Makefile.in
@@ -666,6 +666,14 @@ uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES \
# 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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# Fortran module files can have different extensions and different names
# (e.g., different capitalizations) on different platforms. Write rules
# for them explicitly rather than trying to teach automake about them.
diff --git a/hl/fortran/test/Makefile.in b/hl/fortran/test/Makefile.in
index 352e570..7740a79 100644
--- a/hl/fortran/test/Makefile.in
+++ b/hl/fortran/test/Makefile.in
@@ -616,6 +616,14 @@ uninstall-am: uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/hl/src/Makefile.in b/hl/src/Makefile.in
index a2c6c30..67c904f 100644
--- a/hl/src/Makefile.in
+++ b/hl/src/Makefile.in
@@ -662,6 +662,14 @@ uninstall-am: uninstall-includeHEADERS uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# Automake naturally assumes that we want it to remove y.tab.c on distclean.
# Convince it otherwise.
distclean-compile:
diff --git a/hl/test/Makefile.in b/hl/test/Makefile.in
index c3a6ae4..1214d03 100644
--- a/hl/test/Makefile.in
+++ b/hl/test/Makefile.in
@@ -648,6 +648,14 @@ uninstall-am: uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/hl/tools/gif2h5/Makefile.in b/hl/tools/gif2h5/Makefile.in
index 777d5f0..a74c436 100644
--- a/hl/tools/gif2h5/Makefile.in
+++ b/hl/tools/gif2h5/Makefile.in
@@ -647,6 +647,14 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/perform/Makefile.in b/perform/Makefile.in
index f7196ab..c814582 100644
--- a/perform/Makefile.in
+++ b/perform/Makefile.in
@@ -733,6 +733,14 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/src/Makefile.in b/src/Makefile.in
index 2ae474f..164b097 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -966,6 +966,14 @@ uninstall-am: uninstall-includeHEADERS uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# Error header generation
#
# Actually, H5Einit.h, H5Eterm.h, H5Edefin.h and H5Epubgen.h all
diff --git a/test/Makefile.in b/test/Makefile.in
index fe9ba5a..888a247 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -1180,6 +1180,14 @@ uninstall-am: uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# Additional target for running timing test
timings _timings: testmeta
@for timing in $(TIMINGS) dummy; do \
diff --git a/testpar/Makefile.in b/testpar/Makefile.in
index 72cc4ab..88da117 100644
--- a/testpar/Makefile.in
+++ b/testpar/Makefile.in
@@ -644,6 +644,14 @@ uninstall-am: uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/tools/Makefile.in b/tools/Makefile.in
index 1d6aab9..14f42b0 100644
--- a/tools/Makefile.in
+++ b/tools/Makefile.in
@@ -646,6 +646,14 @@ uninstall-info: uninstall-info-recursive
# 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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/tools/gifconv/Makefile.in b/tools/gifconv/Makefile.in
index 777d5f0..a74c436 100644
--- a/tools/gifconv/Makefile.in
+++ b/tools/gifconv/Makefile.in
@@ -647,6 +647,14 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/tools/h5diff/Makefile.in b/tools/h5diff/Makefile.in
index 254d344..a8ba16d 100644
--- a/tools/h5diff/Makefile.in
+++ b/tools/h5diff/Makefile.in
@@ -687,6 +687,14 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/tools/h5dump/Makefile.in b/tools/h5dump/Makefile.in
index 18e3896..aee2081 100644
--- a/tools/h5dump/Makefile.in
+++ b/tools/h5dump/Makefile.in
@@ -662,6 +662,14 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/tools/h5import/Makefile.in b/tools/h5import/Makefile.in
index d52085a..61c82a8 100755
--- a/tools/h5import/Makefile.in
+++ b/tools/h5import/Makefile.in
@@ -655,6 +655,14 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/tools/h5jam/Makefile.in b/tools/h5jam/Makefile.in
index dc191fc..78c6539 100644
--- a/tools/h5jam/Makefile.in
+++ b/tools/h5jam/Makefile.in
@@ -682,6 +682,14 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/tools/h5ls/Makefile.in b/tools/h5ls/Makefile.in
index 26d3056..39b77b0 100644
--- a/tools/h5ls/Makefile.in
+++ b/tools/h5ls/Makefile.in
@@ -635,6 +635,14 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/tools/h5repack/Makefile.in b/tools/h5repack/Makefile.in
index 2fcb220..2ba12db 100644
--- a/tools/h5repack/Makefile.in
+++ b/tools/h5repack/Makefile.in
@@ -712,6 +712,14 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/tools/lib/Makefile.in b/tools/lib/Makefile.in
index 8452a57..a8a27a6 100644
--- a/tools/lib/Makefile.in
+++ b/tools/lib/Makefile.in
@@ -645,6 +645,14 @@ uninstall-am: uninstall-info-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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
# BUILT_SOURCES contain targets that need to be built before anything else
diff --git a/tools/misc/Makefile.in b/tools/misc/Makefile.in
index 47a062b..c85a528 100644
--- a/tools/misc/Makefile.in
+++ b/tools/misc/Makefile.in
@@ -731,6 +731,14 @@ uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \
# 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
+# exists.
+.PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \
+ build-tests check-clean check-install check-p check-s check-vfd \
+ install-doc lib progs tests uninstall-doc _exec_check-s _test
+
install-exec-local:
@$(INSTALL) h5cc $(bindir)/$(H5CC_NAME)
uninstall-local: