diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2006-06-04 22:28:06 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2006-06-04 22:28:06 (GMT) |
commit | f5a16e9bfa5ee701d6ee40ddd98cfcb03aad6e1b (patch) | |
tree | 9b911e438ed68bc4e193b77a28d9f8f9cc7faefe /tools/misc/Makefile.in | |
parent | 681d0a964cb00bb6a6d0c6ced68a6ea829689f54 (diff) | |
download | hdf5-f5a16e9bfa5ee701d6ee40ddd98cfcb03aad6e1b.zip hdf5-f5a16e9bfa5ee701d6ee40ddd98cfcb03aad6e1b.tar.gz hdf5-f5a16e9bfa5ee701d6ee40ddd98cfcb03aad6e1b.tar.bz2 |
[svn-r12402] Purpose: New features
Description: I am checking in changes for the h5stat tool:
- updated Makefile.am to use tools library
- regenerated Makefile.in
- added command flags to display selected information
- added support for external files and filters
- small output formatting changes
For more information about current features and output see
updated h5stat RFC http://hdf.ncsa.uiuc.edu/RFC/h5stat/h5stat-spec.pdf
Solution:
Platforms tested: mir, heping, shanti, copper 64-bit, copper 32-bit parallel
using files from tools/testfiles directory and some NASA files
from our Web site.
Misc. update:
Diffstat (limited to 'tools/misc/Makefile.in')
-rw-r--r-- | tools/misc/Makefile.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/misc/Makefile.in b/tools/misc/Makefile.in index 9f8d801..62a6c2a 100644 --- a/tools/misc/Makefile.in +++ b/tools/misc/Makefile.in @@ -76,8 +76,8 @@ PROGRAMS = $(bin_PROGRAMS) h5debug_SOURCES = h5debug.c h5debug_OBJECTS = h5debug.$(OBJEXT) h5debug_LDADD = $(LDADD) -am__DEPENDENCIES_1 = $(top_builddir)/src/libhdf5.la -am__DEPENDENCIES_2 = $(top_builddir)/tools/lib/libh5tools.la +am__DEPENDENCIES_1 = $(top_builddir)/tools/lib/libh5tools.la +am__DEPENDENCIES_2 = $(top_builddir)/src/libhdf5.la h5debug_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) h5repart_SOURCES = h5repart.c h5repart_OBJECTS = h5repart.$(OBJEXT) @@ -312,7 +312,8 @@ TIME = time # Path for hl needed in hdf5.h # Include src directory -INCLUDES = -I$(top_srcdir)/hl/src -I$(top_srcdir)/src +INCLUDES = -I$(top_srcdir)/hl/src -I$(top_srcdir)/src \ + -I$(top_srcdir)/tools/lib # Some machines need a command to run executables; this is that command # so that our tests will run. @@ -377,7 +378,7 @@ CLEANFILES = h5redeploy DISTCLEANFILES = h5cc testh5repart.sh # All programs rely on hdf5 library and h5tools library -LDADD = $(LIBHDF5) $(LIBH5TOOLS) +LDADD = $(LIBH5TOOLS) $(LIBHDF5) @BUILD_PARALLEL_CONDITIONAL_FALSE@H5CC_NAME = h5cc # h5cc needs custom install and uninstall rules, since it may be |