diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-10-20 20:50:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-20 20:50:57 (GMT) |
commit | 98b5779ea54edd011d1d3197117ed0571ec7ad6c (patch) | |
tree | ea2294a4cacb081163b8d9b51aae4761bf8c0fcc /tools | |
parent | e01ea706e21b323d17b7b5c6cdaad22602b5573c (diff) | |
download | hdf5-98b5779ea54edd011d1d3197117ed0571ec7ad6c.zip hdf5-98b5779ea54edd011d1d3197117ed0571ec7ad6c.tar.gz hdf5-98b5779ea54edd011d1d3197117ed0571ec7ad6c.tar.bz2 |
Add tools/libtest to Autotools builds (#3735)
This was only added to CMake many years ago and tests the tools
library.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 2 | ||||
-rw-r--r-- | tools/libtest/Makefile.am | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index 7db4040..d0a6c5c 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -19,7 +19,7 @@ include $(top_srcdir)/config/commence.am if BUILD_TESTS_CONDITIONAL - TESTSERIAL_DIR =test + TESTSERIAL_DIR=libtest test else TESTSERIAL_DIR= endif diff --git a/tools/libtest/Makefile.am b/tools/libtest/Makefile.am index 835667c..45b3f47 100644 --- a/tools/libtest/Makefile.am +++ b/tools/libtest/Makefile.am @@ -19,11 +19,11 @@ include $(top_srcdir)/config/commence.am -# Include src and tools/lib directories -AM_CPPFLAGS+=-I$(top_srcdir)/src -I$(top_srcdir)/tools/lib +# Include src, test, and tools/lib directories +AM_CPPFLAGS+=-I$(top_srcdir)/src -I$(top_srcdir)/test -I$(top_srcdir)/tools/lib -# All programs depend on the hdf5 and h5tools libraries -LDADD=$(LIBH5TOOLS) $(LIBHDF5) +# All programs depend on the hdf5, hdf5 test, and h5tools libraries +LDADD=$(LIBH5TOOLS) $(LIBH5TEST) $(LIBHDF5) # main target |