diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-24 21:15:17 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-24 21:15:17 (GMT) |
commit | 22feb1e946ab78c77f3d1bc1f55b6be7574d6c03 (patch) | |
tree | 4acdf7a05541ec634011b29c1ed3c035028d1e40 /fortran/test | |
parent | 7e1be524fa6857146f8774d95d898a4b10202858 (diff) | |
download | hdf5-22feb1e946ab78c77f3d1bc1f55b6be7574d6c03.zip hdf5-22feb1e946ab78c77f3d1bc1f55b6be7574d6c03.tar.gz hdf5-22feb1e946ab78c77f3d1bc1f55b6be7574d6c03.tar.bz2 |
[svn-r2731] Purpose:
Bug Fix
Description:
make distclean left *.{o,lo,h5} files in the directory.
Solution:
Added them to the DISTCLEAN macro.
Diffstat (limited to 'fortran/test')
-rw-r--r-- | fortran/test/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fortran/test/Makefile.in b/fortran/test/Makefile.in index 54e488b..9883bc9 100644 --- a/fortran/test/Makefile.in +++ b/fortran/test/Makefile.in @@ -26,6 +26,8 @@ TEST_SRC=hdf5test.f90 tH5F.f90 tH5D.f90 tH5R.f90 tH5S.f90 tH5T.f90 \ tH5Sselect.f90 tH5P.f90 tH5A.f90 tH5I.f90 TEST_OBJ=$(TEST_SRC:.f90=.lo) +DISTCLEAN=$(TEST_PROGS_SRC:.f90=.lo) $(TEST_PROGS_SRC:.f90=.o) *.h5 + $(TEST_PROGS): $(FLIB) fortranlib_test: fortranlib_test.lo $(TEST_OBJ) |