diff options
author | rawarren <richardwarren2@verizon.net> | 2021-11-29 21:25:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-29 21:25:23 (GMT) |
commit | 720ddb20f347f5ea4e573c44f64e1886d1dc1038 (patch) | |
tree | bdd32da8424488f6d10221518c08ed907ac2be18 /utils/Makefile.am | |
parent | 9cdc6d58bdc0a8bce74559d15fae1284beb82033 (diff) | |
download | hdf5-720ddb20f347f5ea4e573c44f64e1886d1dc1038.zip hdf5-720ddb20f347f5ea4e573c44f64e1886d1dc1038.tar.gz hdf5-720ddb20f347f5ea4e573c44f64e1886d1dc1038.tar.bz2 |
Add support for parallel tools based on the 3rd party library mpiFileUtils (libMFU) … (#1177)
Adds tool h5dwalk and configure options to enable building it.
Co-authored-by: Richard Warren <Richard.Warren@hdfgroup.org>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Richard.Warren <richard.warren@jelly.ad.hdfgroup.org>
Co-authored-by: Larry Knox <lrknox@hdfgroup.org>
Diffstat (limited to 'utils/Makefile.am')
-rw-r--r-- | utils/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/utils/Makefile.am b/utils/Makefile.am index 876dfb1..cd63db4 100644 --- a/utils/Makefile.am +++ b/utils/Makefile.am @@ -32,7 +32,13 @@ else MIRROR_VFD_DIR= endif +if BUILD_TOOLS_CONDITIONAL + TOOLS_DIR =tools +else + TOOLS_DIR= +endif + # All subdirectories -SUBDIRS=$(MIRROR_VFD_DIR) $(TESTUTIL_DIR) +SUBDIRS=$(MIRROR_VFD_DIR) $(TESTUTIL_DIR) $(TOOLS_DIR) include $(top_srcdir)/config/conclude.am |