[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.
This commit is contained in:
Albert Cheng 1998-01-28 10:41:45 -05:00
parent 22a7d4852a
commit 538069b3e0

View File

@ -14,6 +14,9 @@ CPPFLAGS=-I. -I../src @CPPFLAGS@
PROGS=testhdf5 hyperslab istore dtypes dsets cmpd_dset PROGS=testhdf5 hyperslab istore dtypes dsets cmpd_dset
TESTS=$(PROGS) 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 and object files for programs... The PROG_SRC list contains all the
# source files and is used for things like dependencies, archiving, etc. 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 # other source lists are for the individual tests, the files of which may