From a49f1fc63618c652b7ebe83c9d57c331f159a8ff Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 15 Nov 2000 12:18:00 -0500 Subject: [svn-r2924] Purpose: Bug fix Description: distclean was removing .C files. Solution: It was trying to remove the .f90 extension, of which there wasn't one. Platforms tested: Linux --- c++/examples/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in index f767c35..3d5bf55 100644 --- a/c++/examples/Makefile.in +++ b/c++/examples/Makefile.in @@ -22,7 +22,7 @@ LIBHDF5=$(hdf5_builddir)/libhdf5.la ## for building automatic dependencies. TEST_SRC=compound.C h5group.C create.C readdata.C chunks.C extend_ds.C \ writedata.C -TEST_OBJ=$(TEST_SRC:.f90=.lo) +TEST_OBJ=$(TEST_SRC:.C=.lo) ## These are the programs that `make all' or `make tests' will build and which ## `make check' will run. List them in the order they should be run. -- cgit v0.12