summaryrefslogtreecommitdiffstats
path: root/c++
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 /c++
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 'c++')
-rw-r--r--c++/Makefile.in3
-rw-r--r--c++/examples/Makefile.in3
-rw-r--r--c++/src/Makefile.in3
-rw-r--r--c++/test/Makefile.in3
4 files changed, 8 insertions, 4 deletions
diff --git a/c++/Makefile.in b/c++/Makefile.in
index 31c4e67..e8cf00f 100644
--- a/c++/Makefile.in
+++ b/c++/Makefile.in
@@ -282,7 +282,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_CXX_CONDITIONAL_TRUE@SUBDIRS = src test
DIST_SUBDIRS = src test examples
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in
index c94a250..56092e6 100644
--- a/c++/examples/Makefile.in
+++ b/c++/examples/Makefile.in
@@ -274,11 +274,12 @@ 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.
# These are the files that 'make clean' (and derivatives) will remove from this
# directory. Since automake doesn't know about the examples, we need to
# tell it to clean the example programs, too.
-CHECK_CLEANFILES = *.chkexe *.chklog *.h5
+CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.h5
# Use h5c++ to build examples, instead of reguar C++ compiler
H5CPP = $(bindir)/h5c++
diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in
index b781a79..f475b6a 100644
--- a/c++/src/Makefile.in
+++ b/c++/src/Makefile.in
@@ -316,7 +316,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
INCLUDES = -I$(top_srcdir)/src
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in
index b369f5e..b1098e5 100644
--- a/c++/test/Makefile.in
+++ b/c++/test/Makefile.in
@@ -305,7 +305,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, test, and c++/src directories
INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/test -I$(top_srcdir)/c++/src