summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2005-08-31 20:03:52 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2005-08-31 20:03:52 (GMT)
commit6d3715e5378f0b7b92be6697aa6394721c675099 (patch)
treef28d563f1c54ab10fd6d59192388411b49a05ffe /fortran
parentab4127629f7dfd5728691a28928185c8de5fa90c (diff)
downloadhdf5-6d3715e5378f0b7b92be6697aa6394721c675099.zip
hdf5-6d3715e5378f0b7b92be6697aa6394721c675099.tar.gz
hdf5-6d3715e5378f0b7b92be6697aa6394721c675099.tar.bz2
[svn-r11323] Purpose:
tidy up. Description: MPE option created *.clog file whenever it is executed in MPI. The cleanup of *.clog files were done in individual Makefile.in. Often, it is forgotten. Solution: Moved the cleaning of *.clog files to CHECK_CLEANFILES in commence.am so that it is applied whenever check-clean is called. Platforms tested: heping pp using MPE.
Diffstat (limited to 'fortran')
-rw-r--r--fortran/Makefile.in3
-rw-r--r--fortran/examples/Makefile.in3
-rw-r--r--fortran/src/Makefile.in3
-rw-r--r--fortran/test/Makefile.in3
-rw-r--r--fortran/testpar/Makefile.in3
5 files changed, 10 insertions, 5 deletions
diff --git a/fortran/Makefile.in b/fortran/Makefile.in
index ffc634c..b6fefc0 100644
--- a/fortran/Makefile.in
+++ b/fortran/Makefile.in
@@ -286,7 +286,8 @@ H5FC_PP = $(bindir)/h5pfc
# .chkexe files are used to mark tests that have run successfully.
# .chklog files are output from those tests.
-CHECK_CLEANFILES = *.chkexe *.chklog
+# *.clog are from the MPE option.
+CHECK_CLEANFILES = *.chkexe *.chklog *.clog
@BUILD_PARALLEL_CONDITIONAL_TRUE@TESTPARALLEL_DIR = testpar
# Subdirectories in build order, not including examples directory
diff --git a/fortran/examples/Makefile.in b/fortran/examples/Makefile.in
index 9835d26..82199b9 100644
--- a/fortran/examples/Makefile.in
+++ b/fortran/examples/Makefile.in
@@ -274,7 +274,8 @@ H5FC_PP = $(bindir)/h5pfc
# .chkexe files are used to mark tests that have run successfully.
# .chklog files are output from those tests.
-CHECK_CLEANFILES = *.chkexe *.chklog
+# *.clog are from the MPE option.
+CHECK_CLEANFILES = *.chkexe *.chklog *.clog
# Compile parallel fortran examples only if parallel is enabled
@BUILD_PARALLEL_CONDITIONAL_TRUE@TEST_PROG_PARA = ph5example
diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in
index 1525bb0..f91e7a8 100644
--- a/fortran/src/Makefile.in
+++ b/fortran/src/Makefile.in
@@ -341,7 +341,8 @@ H5FC_PP = $(bindir)/h5pfc
# .chkexe files are used to mark tests that have run successfully.
# .chklog files are output from those tests.
-CHECK_CLEANFILES = *.chkexe *.chklog
+# *.clog are from the MPE option.
+CHECK_CLEANFILES = *.chkexe *.chklog *.clog
# Include src directory in both Fortran and C flags (C compiler is used
# for linking).
diff --git a/fortran/test/Makefile.in b/fortran/test/Makefile.in
index 0685dbe..e232ef3 100644
--- a/fortran/test/Makefile.in
+++ b/fortran/test/Makefile.in
@@ -343,9 +343,10 @@ H5FC_PP = $(bindir)/h5pfc
# .chkexe files are used to mark tests that have run successfully.
# .chklog files are output from those tests.
+# *.clog are from the MPE option.
# Temporary files
-CHECK_CLEANFILES = *.chkexe *.chklog *.h5
+CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.h5
# Include files
AM_FCFLAGS = -I$(top_builddir)/fortran/src $(F9XMODFLAG)$(top_builddir)/fortran/src
diff --git a/fortran/testpar/Makefile.in b/fortran/testpar/Makefile.in
index 99d8a4c..c62ebee 100644
--- a/fortran/testpar/Makefile.in
+++ b/fortran/testpar/Makefile.in
@@ -298,9 +298,10 @@ H5FC_PP = $(bindir)/h5pfc
# .chkexe files are used to mark tests that have run successfully.
# .chklog files are output from those tests.
+# *.clog are from the MPE option.
# Temporary files
-CHECK_CLEANFILES = *.chkexe *.chklog parf[12].h5
+CHECK_CLEANFILES = *.chkexe *.chklog *.clog parf[12].h5
# Include files
AM_FCFLAGS = -I$(top_srcdir)/fortran/src -I$(top_srcdir)/fortran/test $(F9XMODFLAG)$(top_builddir)/fortran/src