diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-14 13:54:11 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-14 13:54:11 (GMT) |
commit | bb392083b2a81aa942678e06a537a3c0ab5c08aa (patch) | |
tree | 9243c5965897315e4cbeef983f71b224498718c0 /tools/misc/Makefile.am | |
parent | df075c5b9266b3b7a038fb1377d130ed315aa15c (diff) | |
download | hdf5-bb392083b2a81aa942678e06a537a3c0ab5c08aa.zip hdf5-bb392083b2a81aa942678e06a537a3c0ab5c08aa.tar.gz hdf5-bb392083b2a81aa942678e06a537a3c0ab5c08aa.tar.bz2 |
[svn-r13297] Description:
Add small 'h5mkgrp' tool to create groups in an HDF5 file from the command
line, allowing the group structure for a file to be created in a script. This
tool closely follows the 'mkdir' command line tool in UNIX/Linux.
Allow tool library applications to pass a FAPL to the h5tool_fopen() call,
giving some additional flexibility to tools which are adding objects to an
existing HDF5 file (like h5copy & h5mkgrp).
Fix missing files in MANIFEST from previous checkin(s).
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'tools/misc/Makefile.am')
-rw-r--r-- | tools/misc/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/misc/Makefile.am b/tools/misc/Makefile.am index 5b746f9..423a28b 100644 --- a/tools/misc/Makefile.am +++ b/tools/misc/Makefile.am @@ -25,14 +25,14 @@ INCLUDES=-I$(top_srcdir)/src -I$(top_srcdir)/tools/lib #test script and program TEST_PROG=h5repart_gentest -TEST_SCRIPT=testh5repart.sh testh5stat.sh +TEST_SCRIPT=testh5repart.sh testh5stat.sh $(srcdir)/testh5mkgrp.sh check_PROGRAMS=$(TEST_PROG) repart_test check_SCRIPTS=$(TEST_SCRIPT) -SCRIPT_DEPEND=h5repart$(EXEEXT) h5stat$(EXEEXT) +SCRIPT_DEPEND=h5repart$(EXEEXT) h5stat$(EXEEXT) h5mkgrp$(EXEEXT) # These are our main targets, the tools -bin_PROGRAMS=h5debug h5repart h5stat +bin_PROGRAMS=h5debug h5repart h5stat h5mkgrp bin_SCRIPTS=h5redeploy # Tell automake to clean h5redeploy script |