summaryrefslogtreecommitdiffstats
path: root/tools/misc
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2003-06-09 23:52:08 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2003-06-09 23:52:08 (GMT)
commit265cb20baa6225abe617fd1d5ebce75405494162 (patch)
treee7f4c2239b8fda4bc691aa046dd0c1160a373f38 /tools/misc
parentec6f9400d0f7de22e49a2b10bd86a5e7449a4e7d (diff)
downloadhdf5-265cb20baa6225abe617fd1d5ebce75405494162.zip
hdf5-265cb20baa6225abe617fd1d5ebce75405494162.tar.gz
hdf5-265cb20baa6225abe617fd1d5ebce75405494162.tar.bz2
[svn-r7010] Purpose:
Bug fix Description: h5cc was removed prematurely in "make clean". Moved it to be removed in "make distclean" only. Solution: Platforms tested: COpper. Misc. update:
Diffstat (limited to 'tools/misc')
-rw-r--r--tools/misc/Makefile.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/misc/Makefile.in b/tools/misc/Makefile.in
index 82a15c7..dad2de9 100644
--- a/tools/misc/Makefile.in
+++ b/tools/misc/Makefile.in
@@ -35,8 +35,11 @@ TEST_SCRIPTS=
LIBTOOLS=../lib/libh5tools.la
LIBHDF5=$(top_builddir)/src/libhdf5.la
-PUB_PROGS=h5cc h5debug h5createU8 h5redeploy h5repart @PDB2HDF@
-PROGS=$(PUB_PROGS) $(TEST_PROGS)
+## h5cc is generated by configure. Remove it only when distclean.
+BUILD_PROGS=h5debug h5createU8 h5redeploy h5repart @PDB2HDF@
+PUB_PROGS=h5cc $(BUILD_PROGS)
+PROGS=$(BUILD_PROGS) $(TEST_PROGS)
+DISTCLEAN=h5cc
## Source and object files for the library; do not install
##