diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-08-31 23:12:15 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-08-31 23:12:15 (GMT) |
commit | 2733f697b65bb475cede997cdc4d288118e5c828 (patch) | |
tree | a161b3a56b72eabad443917cb5402b38bb1e3130 /Makefile.in | |
parent | 926b953316fad230bd68e8dc01c805f6a148474e (diff) | |
download | hdf5-2733f697b65bb475cede997cdc4d288118e5c828.zip hdf5-2733f697b65bb475cede997cdc4d288118e5c828.tar.gz hdf5-2733f697b65bb475cede997cdc4d288118e5c828.tar.bz2 |
[svn-r11330] Purpose:
Bug fix
Description:
Errors on sol may have been due to "make clean" being run both
manually and by automake. Removed the manual run.
Also cleaned c++/examples/ii_files directory created by some compilers
(e.g., on modi4).
Solution:
This does mean that examples directories will not be cleaned by
'make clean'.
Platforms tested:
sol, mir, heping, modi4
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 44 |
1 files changed, 15 insertions, 29 deletions
diff --git a/Makefile.in b/Makefile.in index 89e3edc..dd81ed7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -690,7 +690,7 @@ maintainer-clean-generic: @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive -clean-am: clean-generic clean-libtool clean-local mostlyclean-am +clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) @@ -743,20 +743,20 @@ uninstall-info: uninstall-info-recursive .PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am all-local \ am--refresh check check-am clean clean-generic clean-libtool \ - clean-local clean-recursive ctags ctags-recursive dist \ - dist-all dist-bzip2 dist-gzip dist-shar dist-tarZ dist-zip \ - distcheck distclean distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distcleancheck distdir \ - distuninstallcheck dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-exec \ - install-exec-am install-exec-local install-info \ - install-info-am install-man install-strip installcheck \ - installcheck-am installcheck-local installdirs installdirs-am \ - maintainer-clean maintainer-clean-generic \ - maintainer-clean-recursive mostlyclean mostlyclean-generic \ - mostlyclean-libtool mostlyclean-local mostlyclean-recursive \ - pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ - uninstall-info-am uninstall-local + clean-recursive ctags ctags-recursive dist dist-all dist-bzip2 \ + dist-gzip dist-shar dist-tarZ dist-zip distcheck distclean \ + distclean-generic distclean-libtool distclean-recursive \ + distclean-tags distcleancheck distdir distuninstallcheck dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-exec-local install-info install-info-am install-man \ + install-strip installcheck installcheck-am installcheck-local \ + installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic maintainer-clean-recursive \ + mostlyclean mostlyclean-generic mostlyclean-libtool \ + mostlyclean-local mostlyclean-recursive pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-am uninstall-info-am \ + uninstall-local # check-install is a synonym for installcheck. @@ -791,23 +791,9 @@ install-exec-local: uninstall-local: @cd perform && $(MAKE) $(AM_MAKEFLAGS) uninstall -# Clean and mostlyclean need to recurse into examples and perform -# directories unless they've already been distcleaned. -clean-local: - @@SETX@; for d in examples perform; do \ - if test -f $$d/Makefile; then \ - (cd $$d && $(MAKE) $(AM_MAKEFLAGS) clean) || exit 1; \ - fi; \ - done - # Some C++ compilers/linkers will create a directory named ii_files in # the root directory, which should be cleaned. mostlyclean-local: - @@SETX@; for d in examples perform; do \ - if test -f $$d/Makefile; then \ - (cd $$d && $(MAKE) $(AM_MAKEFLAGS) mostlyclean) || exit 1; \ - fi; \ - done; \ if test -d ii_files; then \ $(RM) -rf ii_files; \ fi |