summaryrefslogtreecommitdiffstats
path: root/config/conclude.am
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 /config/conclude.am
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
Diffstat (limited to 'config/conclude.am')
-rw-r--r--config/conclude.am1
1 files changed, 0 insertions, 1 deletions
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