diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-26 20:38:45 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-26 20:38:45 (GMT) |
commit | 16a436ea4d6be3e5f40be3a318c3b6fc696e75fa (patch) | |
tree | 5e57d8abdab7dafc090c502072e0d2c14cecf167 | |
parent | 6f26403376abe8bc48285fd25f6fbee6f24e8172 (diff) | |
download | hdf5-16a436ea4d6be3e5f40be3a318c3b6fc696e75fa.zip hdf5-16a436ea4d6be3e5f40be3a318c3b6fc696e75fa.tar.gz hdf5-16a436ea4d6be3e5f40be3a318c3b6fc696e75fa.tar.bz2 |
[svn-r3714] Purpose:
Update
Description:
Remove the doc from the SUBDIRS macro since we don't have to go to
that directory for all make options. Add doc to the "cleaning"
actions...
Platforms tested:
Linux
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 4a33c74..56af488 100644 --- a/Makefile.in +++ b/Makefile.in @@ -14,7 +14,7 @@ srcdir=@srcdir@ @COMMENCE@ # Subdirectories in build-order (not including `examples') -SUBDIRS=src test tools doc @TESTPARALLEL@ @subdirs@ +SUBDIRS=src test tools @TESTPARALLEL@ @subdirs@ ############################################################################## ## T A R G E T S @@ -85,13 +85,13 @@ H5Tinit.c: mostlyclean distclean maintainer-clean clean mostlyclean: - @@SETX@; for d in $(SUBDIRS) examples pablo; do \ + @@SETX@; for d in $(SUBDIRS) doc examples pablo; do \ (cd $$d && $(MAKE) $@); \ done -$(RM) conftest conftest.c distclean: - @@SETX@; for d in $(SUBDIRS) examples pablo; do \ + @@SETX@; for d in $(SUBDIRS) doc examples pablo; do \ (cd $$d && $(MAKE) $@); \ done -$(RM) config/commence config/conclude @@ -103,7 +103,7 @@ distclean: maintainer-clean: @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) examples pablo; do \ + @@SETX@; for d in $(SUBDIRS) doc examples pablo; do \ (cd $$d && $(MAKE) $@); \ done -$(RM) config.cache config.log config.status src/H5config.h |