summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1997-08-28 16:36:57 (GMT)
committerRobb Matzke <matzke@llnl.gov>1997-08-28 16:36:57 (GMT)
commitae4e4231330459115827485b2896c992f904294d (patch)
treec8d326a5568abb3a946e7b75b491e80b68a7d392 /Makefile.in
parent31ff3e40a06c7d9cced2475f0e6e4acaa2afacd0 (diff)
downloadhdf5-ae4e4231330459115827485b2896c992f904294d.zip
hdf5-ae4e4231330459115827485b2896c992f904294d.tar.gz
hdf5-ae4e4231330459115827485b2896c992f904294d.tar.bz2
[svn-r43] *** empty log message ***
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index ae08a42..a4ca408 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -19,6 +19,8 @@ SUBDIRS=src test
# all: Build libraries, header files, and programs in the various
# subdirectories but do not install them.
#
+# test: Test the uninstalled library to make sure it works.
+#
# install: Installs libraries, header files, programs, and documentation
# in the various directories under the prefix directory (lib,
# include, bin, man, info). Use the `--prefix=PATH' option
@@ -55,7 +57,8 @@ SUBDIRS=src test
# make used in combination with gcc will maintain dependency
# information automatically.
#
-all install uninstall TAGS dep depend:
+.PHONY: test
+all lib progs test install uninstall TAGS dep depend:
@@SETX@; for d in $(SUBDIRS); do \
(cd $$d && $(MAKE) $@) || exit 1; \
done
@@ -84,4 +87,6 @@ maintainer-clean:
# This file does not end with the `CONCLUDE' statement since it has
-# redefined all the standard targets anyway.
+# redefined all the standard targets anyway. However, we do need the
+# `DEPEND' so we can automatically rerun configure if we have GNU make.
+@DEPEND@