diff options
author | Paul Harten <pharten@ncsa.uiuc.edu> | 1998-11-21 20:14:09 (GMT) |
---|---|---|
committer | Paul Harten <pharten@ncsa.uiuc.edu> | 1998-11-21 20:14:09 (GMT) |
commit | c43b9183ccf64b8a8dae444029863ee61397901d (patch) | |
tree | 1eb9bcb1256eb079b91e2b0e0a3b6a7c571ae22b /tools/Makefile.in | |
parent | 8ef8c8b29094eb72ed0a90dc2915012f5f6d9e9f (diff) | |
download | hdf5-c43b9183ccf64b8a8dae444029863ee61397901d.zip hdf5-c43b9183ccf64b8a8dae444029863ee61397901d.tar.gz hdf5-c43b9183ccf64b8a8dae444029863ee61397901d.tar.bz2 |
[svn-r942] PURPOSE:
New Feature
SOLUTION:
h5toh4 is an H5 utility which converts HDF5 files into
HDF4 files. It converts only those H5 objects which have
have mappings into H4 objects.
Some H5 objects that may be converted into H4 objects are:
1) H5 group objects may be converted into H4 Vgroup objects.
2) H5 dataset objects of integer or floating point datatype
may be converted into H4 SDS objects.
3) H5 dataset objects of compound datatype and rank 1 may
be converted into H4 Vdata objects. Field members of the
compound datatype are constrained to be single dimensional.
Platforms tested:
Solaris2.5, HP10.20
Diffstat (limited to 'tools/Makefile.in')
-rw-r--r-- | tools/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in index 9306e3b..48061ca 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -20,11 +20,11 @@ LIB=libh5tools.a PROGS=h5debug h5import h5ls h5repart h5dump @H5TOH4@ # Source and object files for the library. -LIB_SRC=h5tools.c +LIB_SRC=h5tools.c h5findshd.c LIB_OBJ=$(LIB_SRC:.c=.o) # Source and object files for programs... -PROG_SRC=h5debug.c h5import.c h5ls.c h5repart.c h5dump.c h5dumputil.c +PROG_SRC=h5debug.c h5import.c h5ls.c h5repart.c h5dump.c h5dumputil.c h5toh4.c PROG_OBJ=$(PROG_SRC:.c=.o) PRIVATE_HDR=h5tools.h @@ -54,4 +54,7 @@ h5repart: h5repart.o h5dump: h5dump.o h5dumputil.o $(CC) $(CFLAGS) -o $@ h5dump.o h5dumputil.o $(LDFLAGS) $(LIBS) +h5toh4: h5toh4.o + $(CC) $(CFLAGS) -o $@ h5toh4.o $(LDFLAGS) $(LIBS) + @CONCLUDE@ |