From f4fba4aba8eb675ae5eda0c7e7a70e47c0efe463 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Mon, 16 Oct 2000 14:45:08 -0500 Subject: [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: --- fortran/src/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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@ -- cgit v0.12