diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-06-30 18:04:16 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-06-30 18:04:16 (GMT) |
commit | 191943c2c281f13a337383b49039f3c7dbbafb21 (patch) | |
tree | 80fef31538e17fc92804f66b5828e15aa6bc3ae2 /tools/Makefile.in | |
parent | da39dd94dc87452aadf90bd14dbe15b270c78570 (diff) | |
download | hdf5-191943c2c281f13a337383b49039f3c7dbbafb21.zip hdf5-191943c2c281f13a337383b49039f3c7dbbafb21.tar.gz hdf5-191943c2c281f13a337383b49039f3c7dbbafb21.tar.bz2 |
[svn-r1393] Added entry for h5dumptst.c which creates test files for h5dump tool
tests. h5dumptst should be run from inside testfiles directory.
Diffstat (limited to 'tools/Makefile.in')
-rw-r--r-- | tools/Makefile.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in index 3c22b1b..6dab9e9 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -24,7 +24,7 @@ TEST_SCRIPTS=$(srcdir)/testh5dump.sh @TESTH5TOH4@ LT_LINK_LIB=$(LT) --mode=link $(CC) -static -rpath $(libdir) LIB=libh5tools.la LIBHDF5=../src/libhdf5.la -PROGS=h5debug h5import h5ls h5repart h5dump @H5TOH4@ +PROGS=h5debug h5import h5ls h5repart h5dump h5dumptst @H5TOH4@ # Source and object files for the library; do not install LIB_SRC=h5tools.c h5findshd.c @@ -32,7 +32,8 @@ LIB_OBJ=$(LIB_SRC:.c=.lo) PUB_LIB= # Source and object files for programs... -PROG_SRC=h5debug.c h5import.c h5ls.c h5repart.c h5dump.c h5dumputil.c h5toh4.c +PROG_SRC=h5debug.c h5import.c h5ls.c h5repart.c h5dump.c h5dumputil.c \ + h5toh4.c h5dumptst.c PROG_OBJ=$(PROG_SRC:.c=.lo) PRIVATE_HDR=h5tools.h @@ -65,4 +66,7 @@ h5dump: h5dump.lo h5dumputil.lo h5toh4: h5toh4.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5toh4.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) +h5dumptst: h5dumptst.lo + @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5dumptst.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) + @CONCLUDE@ |