diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-16 19:45:08 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-16 19:45:08 (GMT) |
commit | f4fba4aba8eb675ae5eda0c7e7a70e47c0efe463 (patch) | |
tree | d0b36397420a8fa2b11ab16bc314793d5f3c42ff | |
parent | 0d993ff8bc291de5af8e5c49f2506fe55bc3b296 (diff) | |
download | hdf5-f4fba4aba8eb675ae5eda0c7e7a70e47c0efe463.zip hdf5-f4fba4aba8eb675ae5eda0c7e7a70e47c0efe463.tar.gz hdf5-f4fba4aba8eb675ae5eda0c7e7a70e47c0efe463.tar.bz2 |
[svn-r2686] Purpose:
Bug Fix
Description:
When doing a make clean, the H5fortran_types.f90 file would be
removed.
Solution:
Placed it in the DISTCLEAN macro instead of the CLEAN so that it
will stick around.
Platforms tested:
-rw-r--r-- | fortran/src/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in index cf6ee29..f2904ad 100644 --- a/fortran/src/Makefile.in +++ b/fortran/src/Makefile.in @@ -19,7 +19,7 @@ CPPFLAGS=-I. -I$(hdf5_builddir) -I$(hdf5_srcdir) @CPPFLAGS@ ## This is our main target LIB=libhdf5_fortran.la -CLEAN=H5fortran_types.f90 +DISTCLEAN=H5fortran_types.f90 ## Source and object files for the library ADD_PARALLEL_FILES=@ADD_PARALLEL_FILES@ |