summaryrefslogtreecommitdiffstats
path: root/c++
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-11-15 17:18:00 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-11-15 17:18:00 (GMT)
commita49f1fc63618c652b7ebe83c9d57c331f159a8ff (patch)
tree0d29c3f88c864b0db2e6618de3db005a5a0a5cce /c++
parentc22d6272bc855a217f9b7bb610e7cae21af1ff19 (diff)
downloadhdf5-a49f1fc63618c652b7ebe83c9d57c331f159a8ff.zip
hdf5-a49f1fc63618c652b7ebe83c9d57c331f159a8ff.tar.gz
hdf5-a49f1fc63618c652b7ebe83c9d57c331f159a8ff.tar.bz2
[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
Diffstat (limited to 'c++')
-rw-r--r--c++/examples/Makefile.in2
1 files changed, 1 insertions, 1 deletions
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.