diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-07-19 17:58:24 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-07-19 17:58:24 (GMT) |
commit | e9471222f1b0ac282387d146c7e0a5dbd9908177 (patch) | |
tree | 7de5b44e6b7c138c821cf2e8cbccaff7a4acd34d /Makefile.in | |
parent | 794ba0a251af47b8e3c60afa2fe92d267e2a6b55 (diff) | |
download | hdf5-e9471222f1b0ac282387d146c7e0a5dbd9908177.zip hdf5-e9471222f1b0ac282387d146c7e0a5dbd9908177.tar.gz hdf5-e9471222f1b0ac282387d146c7e0a5dbd9908177.tar.bz2 |
[svn-r11085] Purpose:
Bug fix
Description:
Update Makefiles now that docs are no longer in main hdf5 tree.
Solution:
Changed root-level Makefile.am not to recurse into docs tree.
Removed docs Makefiles from configure.in.
Removed config/commence-doc.am, since it is no longer used.
Platforms tested:
mir (change to Makefiles only)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/Makefile.in b/Makefile.in index ae2897f..a61a837 100644 --- a/Makefile.in +++ b/Makefile.in @@ -334,9 +334,7 @@ MOSTLYCLEANFILES = *.chkexe *.chksh SUBDIRS = src test $(TESTPARALLEL_DIR) tools . $(CXX_DIR) $(FORTRAN_DIR) \ $(HDF5_HL_DIR) -DIST_SUBDIRS = src test testpar tools . c++ fortran hl perform examples \ - doc - +DIST_SUBDIRS = src test testpar tools . c++ fortran hl perform examples # Some files generated during configure that should be cleaned DISTCLEANFILES = src/H5config.h src/H5pubconf.h config/stamp1 config/stamp2 @@ -786,29 +784,29 @@ install-exec-local: uninstall-local: cd perform && $(MAKE) $(AM_MAKEFLAGS) uninstall -# Clean and mostlyclean need to recurse into docs, examples, and perform +# Clean and mostlyclean need to recurse into examples and perform # directories unless they've already been distcleaned. clean-local: - @@SETX@; for d in docs examples perform; do \ + @@SETX@; for d in examples perform; do \ if test -f $$d/Makefile; then \ (cd $$d && $(MAKE) $(AM_MAKEFLAGS) clean) || exit 1; \ fi; \ done mostlyclean-local: - @@SETX@; for d in docs examples perform; do \ + @@SETX@; for d in examples perform; do \ if test -f $$d/Makefile; then \ (cd $$d && $(MAKE) $(AM_MAKEFLAGS) mostlyclean) || exit 1; \ fi; \ done -# 'make install-all' also installs docs and examples +# 'make install-all' also installs examples install-all: $(MAKE) $(AM_MAKEFLAGS) install - $(MAKE) $(AM_MAKEFLAGS) install-doc + $(MAKE) $(AM_MAKEFLAGS) install-examples uninstall-all: $(MAKE) $(AM_MAKEFLAGS) uninstall - $(MAKE) $(AM_MAKEFLAGS) uninstall-doc + $(MAKE) $(AM_MAKEFLAGS) uninstall-examples # Install examples in this directory and recursively install-examples uninstall-examples: @@ -816,14 +814,12 @@ install-examples uninstall-examples: (cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ done -# Install documentation and examples +# Placeholder to remind users that docs are now in a separate repository. install-doc: - $(MAKE) $(AM_MAKEFLAGS) install-examples - (cd doc && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; + echo "docs no longer live in this tree. Use install-examples to install examples." uninstall-doc: - $(MAKE) $(AM_MAKEFLAGS) uninstall-examples - (cd doc && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; + echo "docs no longer live in this tree. Use install-examples to install examples." # `make check-install' or `make installcheck' checks that examples can # be successfully built |