diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-09 22:26:51 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-09 22:26:51 (GMT) |
commit | c9e8f0f7b638da1ab14bb8f299f66638b5dd68f6 (patch) | |
tree | 0bdd5ff37873805f4f4cb81761e5fba84a61107a /doc/Makefile.in | |
parent | f9d785f7de7413d73606ec3d58f7a07e289dd409 (diff) | |
download | hdf5-c9e8f0f7b638da1ab14bb8f299f66638b5dd68f6.zip hdf5-c9e8f0f7b638da1ab14bb8f299f66638b5dd68f6.tar.gz hdf5-c9e8f0f7b638da1ab14bb8f299f66638b5dd68f6.tar.bz2 |
[svn-r3583] Purpose:
Bug Fix
Description:
We only really need to go into the doc/ directory when doing a
``make install-doc''.
Solution:
Stop it from going further than here if doing some other type of make
and just print a message saying "Nothing to do here"
Platforms tested:
Linux
Diffstat (limited to 'doc/Makefile.in')
-rw-r--r-- | doc/Makefile.in | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/doc/Makefile.in b/doc/Makefile.in index 14e9998..b5a4876 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -18,9 +18,7 @@ SUBDIRS=html ##=========================================================================== lib progs check test _test install uninstall: - @@SETX@; for d in $(SUBDIRS); do \ - (cd $$d && $(MAKE) $@) || exit 1; \ - done + @echo "Nothing to be done" tests TAGS dep depend: @@SETX@; for d in $(SUBDIRS); do \ @@ -29,8 +27,8 @@ tests TAGS dep depend: install-doc: @if test -d $(DOCDIR) ; then \ - :; \ - else \ + :; \ + else \ mkdir $(DOCDIR) && chmod 755 $(DOCDIR); \ fi @@SETX@; for d in $(SUBDIRS); do \ |