diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-27 20:37:03 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-27 20:37:03 (GMT) |
commit | 88feddb201c948573cd9b73c8906ff37b2857eed (patch) | |
tree | 6a2d2f0bd116ae30a78ac10ef7ce8368700e282b /c++/test | |
parent | 7c15c639fae91f4fbd6c7dab9a6f74d5dbc90312 (diff) | |
download | hdf5-88feddb201c948573cd9b73c8906ff37b2857eed.zip hdf5-88feddb201c948573cd9b73c8906ff37b2857eed.tar.gz hdf5-88feddb201c948573cd9b73c8906ff37b2857eed.tar.bz2 |
[svn-r3866] Purpose:
Bug Fix
Description:
"make distclean" was removing the .h5 file.
Solution:
Stopped it from doing that.
Platforms tested:
Linux
Diffstat (limited to 'c++/test')
-rw-r--r-- | c++/test/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in index f0bc1bd..3be7a91 100644 --- a/c++/test/Makefile.in +++ b/c++/test/Makefile.in @@ -38,7 +38,7 @@ TESTHDF5_OBJ=testhdf5.lo tfile.lo th5s.lo TEST_SCRIPTS= -DISTCLEAN=$(TEST_PROGS_SRC:.cpp=.lo) $(TEST_PROGS_SRC:.cpp=.o) *.h5 +DISTCLEAN=$(TEST_PROGS_SRC:.cpp=.lo) $(TEST_PROGS_SRC:.cpp=.o) $(TEST_PROGS): $(LIB) $(LIBHDF5) |