diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-01-23 22:08:51 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-01-23 22:08:51 (GMT) |
commit | 85751bbbe9cd8eb592ea2b58d2cfa07cc16cfc72 (patch) | |
tree | 90f75cb32cb6066cc09f79ca4d57446f6ebfdb95 /tools/h5diff/Makefile.in | |
parent | f1c8081093204f16e53c2bf524fbdf93e6c319e8 (diff) | |
download | hdf5-85751bbbe9cd8eb592ea2b58d2cfa07cc16cfc72.zip hdf5-85751bbbe9cd8eb592ea2b58d2cfa07cc16cfc72.tar.gz hdf5-85751bbbe9cd8eb592ea2b58d2cfa07cc16cfc72.tar.bz2 |
[svn-r6326] Purpose:
added h5diff to CVS
current version, options only work for float dataset type
Platforms tested:
windows, linux
Diffstat (limited to 'tools/h5diff/Makefile.in')
-rw-r--r-- | tools/h5diff/Makefile.in | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/tools/h5diff/Makefile.in b/tools/h5diff/Makefile.in index 9995cd8..0f71c62 100644 --- a/tools/h5diff/Makefile.in +++ b/tools/h5diff/Makefile.in @@ -19,14 +19,14 @@ CPPFLAGS=-I. -I$(srcdir) -I$(top_builddir)/src -I$(top_srcdir)/src \ ## Test programs and scripts. ## TEST_PROGS= -TEST_SCRIPTS=$(srcdir)/testh5diff.sh +TEST_SCRIPTS= ## These are our main targets: library and tools. ## LIBHDF5=$(top_builddir)/src/libhdf5.la PUB_PROGS=h5diff -PROGS=$(PUB_PROGS) $(TEST_PROGS) h5difftst +PROGS= ## Source and object files for the library; do not install ## @@ -36,7 +36,7 @@ PUB_LIB= ## Source and object files for programs... ## -PROG_SRC=h5diff.c h5difftst.c +PROG_SRC=h5diff.c h5trav.c PROG_OBJ=$(PROG_SRC:.c=.lo) PRIVATE_HDR= @@ -55,10 +55,8 @@ check test _test: $(PROGS) ## $(PROGS): $(LIBTOOLS) $(LIBHDF5) -h5diff: h5diff.lo - @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5diff.lo $(LIBTOOLS) $(LIBHDF5) $(LDFLAGS) $(LIBS) +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@ |