summaryrefslogtreecommitdiffstats
path: root/tools/h5diff/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'tools/h5diff/Makefile.in')
-rw-r--r--tools/h5diff/Makefile.in12
1 files changed, 8 insertions, 4 deletions
diff --git a/tools/h5diff/Makefile.in b/tools/h5diff/Makefile.in
index a48f41d..4a56caa 100644
--- a/tools/h5diff/Makefile.in
+++ b/tools/h5diff/Makefile.in
@@ -26,8 +26,8 @@ CPPFLAGS=-I. -I$(srcdir) -I$(top_builddir)/src -I$(top_srcdir)/src \
## Test programs and scripts.
##
-TEST_PROGS=
-TEST_SCRIPTS=
+TEST_PROGS=h5difftst
+TEST_SCRIPTS=$(srcdir)/testh5diff.sh
## These are our main targets: library and tools.
##
@@ -44,10 +44,10 @@ PUB_LIB=
## Source and object files for programs...
##
-PROG_SRC=h5diff.c h5trav.c
+PROG_SRC=h5diff.c h5trav.c h5difftst.c
PROG_OBJ=$(PROG_SRC:.c=.lo)
-PRIVATE_HDR=
+PRIVATE_HDR=h5trav.h
## Source and object files for the tests
##
@@ -66,4 +66,8 @@ $(PROGS): $(LIBTOOLS) $(LIBHDF5)
h5diff: h5diff.lo h5trav.lo
@$(LT_LINK_EXE) $(CFLAGS) -o $@ h5diff.lo h5trav.lo $(LIBTOOLS) $(LIBHDF5) $(LDFLAGS) $(LIBS)
+h5difftst: h5difftst.lo
+ @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5difftst.lo $(LIBTOOLS) $(LIBHDF5) $(LDFLAGS) $(LIBS)
+
+
@CONCLUDE@