diff options
Diffstat (limited to 'tools/h5dump/Makefile.am')
-rw-r--r-- | tools/h5dump/Makefile.am | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/tools/h5dump/Makefile.am b/tools/h5dump/Makefile.am index ff1c497..4c77476 100644 --- a/tools/h5dump/Makefile.am +++ b/tools/h5dump/Makefile.am @@ -6,7 +6,7 @@ # This file is part of HDF5. The full HDF5 copyright notice, including # terms governing use, modification, and redistribution, is contained in # the COPYING file, which can be found at the root of the source code -# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# distribution tree, or in https://www.hdfgroup.org/licenses. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. ## @@ -22,17 +22,22 @@ include $(top_srcdir)/config/commence.am AM_CPPFLAGS+=-I$(top_srcdir)/src -I$(top_srcdir)/tools/lib # Test programs and scripts +if BUILD_TESTS_CONDITIONAL TEST_PROG=h5dumpgentest TEST_SCRIPT=testh5dump.sh testh5dumppbits.sh testh5dumpxml.sh - -check_PROGRAMS=$(TEST_PROG) binread -check_SCRIPTS=$(TEST_SCRIPT) -SCRIPT_DEPEND=h5dump$(EXEEXT) if HAVE_SHARED_CONDITIONAL if USE_PLUGINS_CONDITIONAL TEST_SCRIPT += h5dump_plugin.sh endif endif +else +TEST_PROG= +TEST_SCRIPT= +endif + +check_PROGRAMS=$(TEST_PROG) binread +check_SCRIPTS=$(TEST_SCRIPT) +SCRIPT_DEPEND=h5dump$(EXEEXT) # Our main target, the h5dump tool. bin_PROGRAMS=h5dump |