diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-01-28 15:41:45 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-01-28 15:41:45 (GMT) |
commit | 538069b3e0d262ac058cad2d4370eb30b9e6cee9 (patch) | |
tree | a63f2065978d2ad97e8c092ce1e828921053a003 /test | |
parent | 22a7d4852ad9a3c1b12024c0898748ba360ad9c2 (diff) | |
download | hdf5-538069b3e0d262ac058cad2d4370eb30b9e6cee9.zip hdf5-538069b3e0d262ac058cad2d4370eb30b9e6cee9.tar.gz hdf5-538069b3e0d262ac058cad2d4370eb30b9e6cee9.tar.bz2 |
[svn-r184] Purpose: Feature
Problem: Some *.h5 files are left behind after tests.
Solution: Added the MOSTLYCLEAN line for those few .h5 to be removed
if "make clean" is called. Did not use "*.h5" because of concern that
it may blow away legitimate .h5 files. Though it is possible to put
legitimate .h5 in a subdirectory, it is better to play it safe this
way.
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 008829d..f85878e 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -14,6 +14,9 @@ CPPFLAGS=-I. -I../src @CPPFLAGS@ PROGS=testhdf5 hyperslab istore dtypes dsets cmpd_dset TESTS=$(PROGS) +# Temporary files +MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 istore.h5 + # Source and object files for programs... The PROG_SRC list contains all the # source files and is used for things like dependencies, archiving, etc. The # other source lists are for the individual tests, the files of which may |