summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2002-02-27 19:31:37 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2002-02-27 19:31:37 (GMT)
commit2ee629ddc79b32740f2db233cc248d1afd2c47b7 (patch)
tree21d96db9f49bc7df4d3904f299be0ea2e58e38f9 /Makefile.in
parente4961068312b5e15e88d0e8200742ec7f395eb55 (diff)
downloadhdf5-2ee629ddc79b32740f2db233cc248d1afd2c47b7.zip
hdf5-2ee629ddc79b32740f2db233cc248d1afd2c47b7.tar.gz
hdf5-2ee629ddc79b32740f2db233cc248d1afd2c47b7.tar.bz2
[svn-r5018] Purpose:
Feature Description: Added the check-install target to verify if installed software is working. Currently only run "make check" in examples. Platforms tested: eirene
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 0325d5f..da94ced 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -111,6 +111,10 @@ uninstall-doc:
@$(MAKE) uninstall-examples
(cd doc && $(MAKE) $@) || exit 1;
+## need to require a proper "make install" has been done.
+check-install:
+ (cd examples && $(MAKE) check) || exit 1;
+
## Number format detection
H5detect:
(cd src && $(MAKE) $@)