diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2003-04-20 02:10:15 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2003-04-20 02:10:15 (GMT) |
commit | 9e3ab7e5d2494ca4dda3b3b2e9984eb067abb649 (patch) | |
tree | a0bb92bf6b04687f1c4545150b839a7332e6b702 /testpar/Makefile.in | |
parent | 11d5709f1e1617c8d2eb091c01950f1604279211 (diff) | |
download | hdf5-9e3ab7e5d2494ca4dda3b3b2e9984eb067abb649.zip hdf5-9e3ab7e5d2494ca4dda3b3b2e9984eb067abb649.tar.gz hdf5-9e3ab7e5d2494ca4dda3b3b2e9984eb067abb649.tar.bz2 |
[svn-r6718] Purpose:
bug fix
Description:
The fphdf5.o and similar files are not included in the make clean
target. So, if the same directory is used again for a different
build, the left behind file could cause a problem (e.g., if
the second build is for a different binary format.)
Solution:
Added fphdf5.c to the TEST_SRC list which indirect form the clean
target list.
Platforms tested:
Did not run h5committest tests because they don't verify this
failure. I tested the fix in modi4 pp to verify all files are cleaned.
Misc. update:
Diffstat (limited to 'testpar/Makefile.in')
-rw-r--r-- | testpar/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/Makefile.in b/testpar/Makefile.in index 15cf109..867c8b6 100644 --- a/testpar/Makefile.in +++ b/testpar/Makefile.in @@ -41,7 +41,7 @@ DISTCLEAN=go Makefile testph5.sh ## Test source files TEST_PHDF5_SRC=testphdf5.c t_dset.c t_file.c t_mdset.c t_ph5basic.c TEST_PHDF5_OBJ=$(TEST_PHDF5_SRC:.c=.lo) -TEST_SRC=t_mpi.c $(TEST_PHDF5_SRC) +TEST_SRC=t_mpi.c t_fphdf5.c $(TEST_PHDF5_SRC) TEST_OBJ=$(TEST_SRC:.c=.lo) TEST_HDR=testphdf5.h |