diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-09 20:41:03 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-09 20:41:03 (GMT) |
commit | 452ee91027b4bf93d8afccaf948e685bb1341da8 (patch) | |
tree | 5b5bd992ee57b3738d9c56a1e8903afc78b07508 /tools/Makefile.in | |
parent | 2c7f74e08812fdcb6d746257be478041a6414b32 (diff) | |
download | hdf5-452ee91027b4bf93d8afccaf948e685bb1341da8.zip hdf5-452ee91027b4bf93d8afccaf948e685bb1341da8.tar.gz hdf5-452ee91027b4bf93d8afccaf948e685bb1341da8.tar.bz2 |
[svn-r2643] Purpose:
Adding Testing
Description:
Alignment when putting elements in a compound datatype can be
off.
Solution:
This was a bug which I'd fixed. Here's a program to exercise the
bug.
Platforms tested:
Linux
Diffstat (limited to 'tools/Makefile.in')
-rw-r--r-- | tools/Makefile.in | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in index 30f67b8..912b5ff 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -14,7 +14,7 @@ srcdir=@srcdir@ CPPFLAGS=-I. -I$(srcdir) -I../src -I$(top_srcdir)/src @CPPFLAGS@ ## Test programs and scripts. -TEST_PROGS= +TEST_PROGS=talign TEST_SCRIPTS=$(srcdir)/testh5dump.sh @TESTH5TOH4@ @TESTH4TOH5@ ## These are our main targets: library and tools. We link this library @@ -32,16 +32,15 @@ LIB_OBJ=$(LIB_SRC:.c=.lo) PUB_LIB= ## Source and object files for h4toh5 converter. -H4TOH5_SRC=h4toh5main.c h4toh5vgroup.c h4toh5vdata.c h4toh5sds.c h4toh5image.c h4toh5pal.c \ - h4toh5anno.c h4toh5util.c +H4TOH5_SRC=h4toh5main.c h4toh5vgroup.c h4toh5vdata.c h4toh5sds.c \ + h4toh5image.c h4toh5pal.c h4toh5anno.c h4toh5util.c H4TOH5_OBJ=$(H4TOH5_SRC:.c=.lo) H4TOH5_HDR=h4toh5main.h h4toh5util.h ## Source and object files for programs... -PROG_SRC=h5debug.c h5import.c h5ls.c h5repart.c h5dump.c \ - h5toh4.c h5dumptst.c pdb2hdf.c \ - $(H4TOH5_SRC) -PROG_OBJ=$(PROG_SRC:.c=.lo) $(H4TOH5_OBJ) +PROG_SRC=h5debug.c h5import.c h5ls.c h5repart.c h5dump.c h5toh4.c \ + h5dumptst.c pdb2hdf.c talign.c $(H4TOH5_SRC) +PROG_OBJ=$(PROG_SRC:.c=.lo) talign.lo $(H4TOH5_OBJ) PRIVATE_HDR=h5tools.h $(H4TOH5_HDR) ## Source and object files for the tests @@ -82,4 +81,7 @@ h4toh5: $(H4TOH5_OBJ) pdb2hdf: pdb2hdf.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ pdb2hdf.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) +talign: talign.lo + @$(LT_LINK_EXE) $(CFLAGS) -o $@ talign.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) + @CONCLUDE@ |