diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-10-15 21:37:32 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-10-15 21:37:32 (GMT) |
commit | 5aa49645b58f4f9740713e844ffa65655d3230a2 (patch) | |
tree | 3fa3964f25014d504d35797e8e108ec8aec6e74a | |
parent | 80dfcec92c0ac094118cf722497e7b7aea355337 (diff) | |
download | hdf5-5aa49645b58f4f9740713e844ffa65655d3230a2.zip hdf5-5aa49645b58f4f9740713e844ffa65655d3230a2.tar.gz hdf5-5aa49645b58f4f9740713e844ffa65655d3230a2.tar.bz2 |
[svn-r1766] Modified to support install-doc.
-rw-r--r-- | doc/Makefile.in | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/doc/Makefile.in b/doc/Makefile.in new file mode 100644 index 0000000..c62424e --- /dev/null +++ b/doc/Makefile.in @@ -0,0 +1,64 @@ +# HDF5 Library Doc Makefile(.in) +# +# Copyright (C) 1997 National Center for Supercomputing Applications. +# All rights reserved. +# +# +# This is the top level makefile of the Doc directory. It mostly just +# reinvokes make in the various subdirectories. +# You can alternatively invoke make from each subdirectory manually. +# +top_srcdir=@top_srcdir@ +top_builddir=.. +srcdir=@srcdir@ +VPATH=.:@srcdir@ +@COMMENCE@ + +# Subdirectories in build-order +SUBDIRS=html + +##=========================================================================== +lib progs check test _test install uninstall: + @@SETX@; for d in $(SUBDIRS); do \ + (cd $$d && $(MAKE) $@) || exit 1; \ + done + +tests TAGS dep depend: + @@SETX@; for d in $(SUBDIRS); do \ + (cd $$d && $(MAKE) $@) || exit 1; \ + done + +$(docdir): + mkdir $@ && chmod 755 $@ + +install-doc: $(docdir) + @@SETX@; for d in $(SUBDIRS); do \ + (cd $$d && $(MAKE) $@) || exit 1; \ + done + +uninstall-doc: + @@SETX@; for d in $(SUBDIRS); do \ + (cd $$d && $(MAKE) $@) || exit 1; \ + done + +.PHONY: all lib progs test _test install uninstall dep depend clean \ + mostlyclean distclean maintainer-clean + +clean mostlyclean: + @@SETX@; for d in $(SUBDIRS); do \ + (cd $$d && $(MAKE) $@); \ + done + +distclean: + @@SETX@; for d in $(SUBDIRS); do \ + (cd $$d && $(MAKE) $@); \ + done + -$(RM) Makefile + +maintainer-clean: distclean + @echo "This target is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." + @@SETX@; for d in $(SUBDIRS); do \ + (cd $$d && $(MAKE) $@); \ + done + |