diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-23 19:22:54 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-23 19:22:54 (GMT) |
commit | 29801c37709a5843ca5e3947ace4b1133a982260 (patch) | |
tree | 180294c9a5f17d8f6984c7b1afa35103e91c6c23 /doc | |
parent | 401ec5ed9853e883601b317d9cf4acd974691525 (diff) | |
download | hdf5-29801c37709a5843ca5e3947ace4b1133a982260.zip hdf5-29801c37709a5843ca5e3947ace4b1133a982260.tar.gz hdf5-29801c37709a5843ca5e3947ace4b1133a982260.tar.bz2 |
[svn-r3700] Purpose:
Fix
Description:
Stop make from recursing needlessly in these subdirectories.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/Makefile.in b/doc/Makefile.in index 14e9998..a9fc804 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 for $@ tests TAGS dep depend: @@SETX@; for d in $(SUBDIRS); do \ |