[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
This commit is contained in:
Bill Wendling 2000-11-15 12:18:00 -05:00
parent c22d6272bc
commit a49f1fc636

View File

@ -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.