summaryrefslogtreecommitdiffstats
path: root/fortran/test/Makefile.in
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2003-06-09 02:40:16 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2003-06-09 02:40:16 (GMT)
commit2a8ef6786d77de34cb3b9a8a48c2eb3d0f281161 (patch)
tree3901bd13ba7b54d920eec705d6aa52f754699daf /fortran/test/Makefile.in
parent355d0d6eb7e791a509b937f0ffb4977bd52aeec4 (diff)
downloadhdf5-2a8ef6786d77de34cb3b9a8a48c2eb3d0f281161.zip
hdf5-2a8ef6786d77de34cb3b9a8a48c2eb3d0f281161.tar.gz
hdf5-2a8ef6786d77de34cb3b9a8a48c2eb3d0f281161.tar.bz2
[svn-r6994] Purpose:
Cleanup Description: Moved the cleanup of configure generated files to DISTCLEAN as that should be the place they get removbed. Platforms tested: Tested in copper only as change is trivial. Misc. update:
Diffstat (limited to 'fortran/test/Makefile.in')
-rw-r--r--fortran/test/Makefile.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/fortran/test/Makefile.in b/fortran/test/Makefile.in
index 92032ea..159627b 100644
--- a/fortran/test/Makefile.in
+++ b/fortran/test/Makefile.in
@@ -39,9 +39,12 @@ TEST_PROGS=$(TEST_PROGS_SRC:.f90=)
TEST_FSRC= tH5F.f90 tH5D.f90 tH5R.f90 tH5S.f90 tH5T.f90 tH5VL.f90 tH5Z.f90\
tH5Sselect.f90 tH5P.f90 tH5A.f90 tH5I.f90 tH5G.f90 tH5E.f90 tf.f90
TEST_CSRC = t.c
-TEST_OBJ=$(TEST_FSRC:.f90=.lo) $(TEST_CSRC:.c=.lo)
+TEST_OBJ=$(TEST_FSRC:.f90=.lo) $(TEST_CSRC:.c=.lo) $(TEST_PROGS_SRC:.f90=.lo)
-DISTCLEAN=$(TEST_PROGS_SRC:.f90=.lo) $(TEST_PROGS_SRC:.f90=.o) *.h5 *.tmp
+## Temporary files
+MOSTLYCLEAN=*.h5 *.tmp
+
+DISTCLEAN=$(TEST_PROGS_SRC:.f90=.lo) $(TEST_PROGS_SRC:.f90=.o)
$(TEST_PROGS): $(LIB) $(FLIB)