summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-02-21 21:10:29 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-02-21 21:10:29 (GMT)
commit2c49a718d7e3332f4a7cbbf612956806b27a6375 (patch)
treebccd5f785588c6508fdb3a35330d4ada12491d6b /Makefile.in
parent43bed07320954f6ac499e7a65bd01685369658cf (diff)
downloadhdf5-2c49a718d7e3332f4a7cbbf612956806b27a6375.zip
hdf5-2c49a718d7e3332f4a7cbbf612956806b27a6375.tar.gz
hdf5-2c49a718d7e3332f4a7cbbf612956806b27a6375.tar.bz2
[svn-r4999] Purpose:
Bug Fix Description: ``make uninstall-doc'' wasn't working properly. Some files would be left behind in the installed source tree. The fix I put in was too heavy-handed as it wiped out the entire doc tree that was installed and would remove any other files which were installed there. Solution: Executed the ``make uninstall-examples'' command if uninstalling the docs. Fixed how the java Tutorial examples were being removed (they weren't). Essentially used the PUB_SUBDOCS macro to help remove them. Platforms tested: Linux
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index c275988..0325d5f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,6 +1,6 @@
## Top-level HDF5 Makefile(.in)
##
-## Copyright (C) 1997, 1998, 1999, 2000, 2001
+## Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002
## National Center for Supercomputing Applications
## All rights reserved.
##
@@ -76,6 +76,10 @@ install-all:
@$(MAKE) install-doc
@$(LT) --mode=finish $(libdir)
+uninstall-all:
+ @$(MAKE) uninstall
+ @$(MAKE) uninstall-doc
+
install:
@@SETX@; for d in $(SUBDIRS); do \
(cd $$d && $(MAKE) $@) || exit 1; \
@@ -104,6 +108,7 @@ install-doc:
(cd doc && $(MAKE) $@) || exit 1;
uninstall-doc:
+ @$(MAKE) uninstall-examples
(cd doc && $(MAKE) $@) || exit 1;
## Number format detection