summaryrefslogtreecommitdiffstats
path: root/hl
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 /hl
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 'hl')
-rwxr-xr-xhl/Makefile.in3
-rw-r--r--hl/c++/Makefile.in3
-rw-r--r--hl/c++/src/Makefile.in3
-rw-r--r--hl/c++/test/Makefile.in3
-rw-r--r--hl/fortran/Makefile.in3
-rw-r--r--hl/fortran/src/Makefile.in3
-rw-r--r--hl/fortran/test/Makefile.in4
-rw-r--r--hl/src/Makefile.in3
-rw-r--r--hl/test/Makefile.in3
-rw-r--r--hl/tools/gif2h5/Makefile.in3
10 files changed, 21 insertions, 10 deletions
diff --git a/hl/Makefile.in b/hl/Makefile.in
index f156cf2..7243ca5 100755
--- a/hl/Makefile.in
+++ b/hl/Makefile.in
@@ -278,7 +278,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_FORTRAN_CONDITIONAL_TRUE@FORTRAN_DIR = fortran
@BUILD_CXX_CONDITIONAL_TRUE@CXX_DIR = c++
@BUILD_HDF5_HL_CONDITIONAL_TRUE@SUBDIRS = src test $(CXX_DIR) $(FORTRAN_DIR)
diff --git a/hl/c++/Makefile.in b/hl/c++/Makefile.in
index e91980b..39e0faf 100644
--- a/hl/c++/Makefile.in
+++ b/hl/c++/Makefile.in
@@ -283,7 +283,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
SUBDIRS = src test
# Automake needs to be taught how to build lib, progs, and tests targets.
diff --git a/hl/c++/src/Makefile.in b/hl/c++/src/Makefile.in
index 37015fe..faa0342 100644
--- a/hl/c++/src/Makefile.in
+++ b/hl/c++/src/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 directory
INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/hl/src
diff --git a/hl/c++/test/Makefile.in b/hl/c++/test/Makefile.in
index eeeea8c..121a049 100644
--- a/hl/c++/test/Makefile.in
+++ b/hl/c++/test/Makefile.in
@@ -299,7 +299,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 directories
INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/hl/src -I$(top_srcdir)/hl/c++/src -I$(top_srcdir)/test
diff --git a/hl/fortran/Makefile.in b/hl/fortran/Makefile.in
index b0eece3..33a7aa2 100644
--- a/hl/fortran/Makefile.in
+++ b/hl/fortran/Makefile.in
@@ -278,7 +278,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
SUBDIRS = src test
# Automake needs to be taught how to build lib, progs, and tests targets.
diff --git a/hl/fortran/src/Makefile.in b/hl/fortran/src/Makefile.in
index 8aee289..0e9f952 100644
--- a/hl/fortran/src/Makefile.in
+++ b/hl/fortran/src/Makefile.in
@@ -299,7 +299,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
INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/hl/src -I$(top_builddir)/hl/src \
-I$(top_srcdir)/fortran/src -I$(top_builddir)/fortran/src
diff --git a/hl/fortran/test/Makefile.in b/hl/fortran/test/Makefile.in
index e69c90f..5249f89 100644
--- a/hl/fortran/test/Makefile.in
+++ b/hl/fortran/test/Makefile.in
@@ -298,9 +298,11 @@ 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 dsetf[1-4].h5 f1img.h5 f1tab.h5
+CHECK_CLEANFILES = *.chkexe *.chklog *.clog dsetf[1-4].h5 f1img.h5 \
+ f1tab.h5
AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(top_srcdir)/hl/src
AM_FCFLAGS = -I$(top_builddir)/fortran/src -I$(top_builddir)/hl/fortran/src $(F9XMODFLAG)$(top_builddir)/fortran/src $(F9XMODFLAG)$(top_builddir)/hl/fortran/src
diff --git a/hl/src/Makefile.in b/hl/src/Makefile.in
index 21a3449..55b8381 100644
--- a/hl/src/Makefile.in
+++ b/hl/src/Makefile.in
@@ -296,7 +296,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
# Add include directories to the C preprocessor flags
AM_CPPFLAGS = -I$(top_srcdir)/src
diff --git a/hl/test/Makefile.in b/hl/test/Makefile.in
index c3acb78..cc1f609 100644
--- a/hl/test/Makefile.in
+++ b/hl/test/Makefile.in
@@ -308,9 +308,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. These files are the ones created by running `make test'.
-CHECK_CLEANFILES = *.chkexe *.chklog combine_tables[1-2].h5 \
+CHECK_CLEANFILES = *.chkexe *.chklog *.clog combine_tables[1-2].h5 \
test_ds[1-6].h5 test_image[1-3].h5 test_lite[1-2].h5 \
test_table.h5 test_packet_table.h5
diff --git a/hl/tools/gif2h5/Makefile.in b/hl/tools/gif2h5/Makefile.in
index d023e61..29ad6ee 100644
--- a/hl/tools/gif2h5/Makefile.in
+++ b/hl/tools/gif2h5/Makefile.in
@@ -306,7 +306,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 and tools/lib directories
INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/tools/lib