diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-10-06 16:08:29 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-10-06 16:08:29 (GMT) |
commit | e5ff89e5dbb160eda73feafa102a3508defe39c1 (patch) | |
tree | 5a6e22927878347e2d29f0e5fe9ed17f596336ad | |
parent | 7dc4fa3f5eba150cf52846031426ea9cfd4f1d52 (diff) | |
download | hdf5-e5ff89e5dbb160eda73feafa102a3508defe39c1.zip hdf5-e5ff89e5dbb160eda73feafa102a3508defe39c1.tar.gz hdf5-e5ff89e5dbb160eda73feafa102a3508defe39c1.tar.bz2 |
[svn-r1726] Created separated targets for install-doc and uninstall-doc.
install and uninstall no longer turns around to call them.
Document installation and uninstallation have to be invoked
here manually for now.
-rw-r--r-- | doc/Makefile.in | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/doc/Makefile.in b/doc/Makefile.in index 766be03..c62424e 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -8,12 +8,6 @@ # reinvokes make in the various subdirectories. # You can alternatively invoke make from each subdirectory manually. # -# This is just a preliminary version. It turns the "install" and -# "uninstall" targets to "install-doc" and "uninstall-doc" targets -# for subdirectories. This should be revised to more correct -# separate targets as "install-all", "install" and "install-doc" -# whereas "install-all" does both "install" and "install-doc". -# top_srcdir=@top_srcdir@ top_builddir=.. srcdir=@srcdir@ @@ -24,7 +18,7 @@ VPATH=.:@srcdir@ SUBDIRS=html ##=========================================================================== -lib progs check test _test: +lib progs check test _test install uninstall: @@SETX@; for d in $(SUBDIRS); do \ (cd $$d && $(MAKE) $@) || exit 1; \ done @@ -37,14 +31,14 @@ tests TAGS dep depend: $(docdir): mkdir $@ && chmod 755 $@ -install: $(docdir) +install-doc: $(docdir) @@SETX@; for d in $(SUBDIRS); do \ - (cd $$d && $(MAKE) $@-doc) || exit 1; \ + (cd $$d && $(MAKE) $@) || exit 1; \ done -uninstall: +uninstall-doc: @@SETX@; for d in $(SUBDIRS); do \ - (cd $$d && $(MAKE) $@-doc) || exit 1; \ + (cd $$d && $(MAKE) $@) || exit 1; \ done .PHONY: all lib progs test _test install uninstall dep depend clean \ |