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 /fortran/Makefile.am | |
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 'fortran/Makefile.am')
-rw-r--r-- | fortran/Makefile.am | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/fortran/Makefile.am b/fortran/Makefile.am index 9a988d9..f810e3b 100644 --- a/fortran/Makefile.am +++ b/fortran/Makefile.am @@ -36,16 +36,6 @@ endif # All directories that have Makefiles DIST_SUBDIRS=src test testpar examples -# Clean and mostlyclean need to recurse into examples directory -clean-local: - @if test -f examples/Makefile; then \ - (cd examples && $(MAKE) $(AM_MAKEFLAGS) clean) || exit 1; \ - fi; -mostlyclean-local: - @if test -f examples/Makefile; then \ - (cd examples && $(MAKE) $(AM_MAKEFLAGS) mostlyclean) || exit 1; \ - fi; - # Install examples install-examples uninstall-examples: @(cd examples && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; |