diff options
author | Dhvanil Popat <dpopat@hdfgroup.org> | 2019-07-16 19:55:41 (GMT) |
---|---|---|
committer | Dhvanil Popat <dpopat@hdfgroup.org> | 2019-07-16 19:55:41 (GMT) |
commit | 6ea31d54b80e8ceaac21a0399117aa4140b919c7 (patch) | |
tree | 0ed583989920edefdb876cd94864a52ec5573d29 /tools/h5diff | |
parent | 2b6e8e76ad8d0312ba9683deb9d7e28cd1748d29 (diff) | |
download | hdf5-6ea31d54b80e8ceaac21a0399117aa4140b919c7.zip hdf5-6ea31d54b80e8ceaac21a0399117aa4140b919c7.tar.gz hdf5-6ea31d54b80e8ceaac21a0399117aa4140b919c7.tar.bz2 |
Added options to build tools and tests for HDF5_ 1_8
Diffstat (limited to 'tools/h5diff')
-rw-r--r-- | tools/h5diff/Makefile.am | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/h5diff/Makefile.am b/tools/h5diff/Makefile.am index 2fd328f..44349e9 100644 --- a/tools/h5diff/Makefile.am +++ b/tools/h5diff/Makefile.am @@ -35,8 +35,13 @@ bin_PROGRAMS=h5diff $(H5PDIFF) h5diff_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) # Test programs and scripts -TEST_PROG=h5diffgentest -TEST_SCRIPT=testh5diff.sh +if BUILD_TESTS_CONDITIONAL + TEST_PROG=h5diffgentest + TEST_SCRIPT=testh5diff.sh +else + TEST_PROG= + TEST_SCRIPT= +endif check_PROGRAMS=$(TEST_PROG) check_SCRIPTS=$(TEST_SCRIPT) $(TEST_SCRIPT_PARA) |