diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-01-21 20:01:02 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-01-21 20:01:02 (GMT) |
commit | f5cc0548b8dacfefee4878075f568b5f124e9dc3 (patch) | |
tree | 8dc8edc28b7cde4a01e4cb650d2483aa46c2ecdd /src/Makefile.in | |
parent | b7f919cccb89f991e3ddc625bba675c2ea483b15 (diff) | |
download | hdf5-f5cc0548b8dacfefee4878075f568b5f124e9dc3.zip hdf5-f5cc0548b8dacfefee4878075f568b5f124e9dc3.tar.gz hdf5-f5cc0548b8dacfefee4878075f568b5f124e9dc3.tar.bz2 |
[svn-r161] Changes since 19980121
----------------------
./MANIFEST
./src/H5Psimp.c [NEW]
./src/Makefile.in
Added H5Psimp.c and populated it with some conversion
functions. Eventually the parts of H5P.c that operate on
simple data spaces will be migrated to H5Psimp.c and other
files will be created for other types of data spaces.
./src/H5D.c
The read pipeline, H5Dread(), has been updated to handle data
space conversion although the actual simple data space
conversion functions don't do anything yet. But we're getting
really close!
./src/H5P.c
./src/H5Pprivate.h
Added H5P_find() to locate data space conversion functions.
Added typedefs for structs related to data space conversion.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 7bb2f81..912a901 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -18,7 +18,8 @@ LIB_SRC=H5.c H5A.c H5AC.c H5B.c H5C.c H5D.c H5E.c H5F.c H5Farray.c H5Fcore.c \ H5Ffamily.c H5Fistore.c H5Flow.c H5Fsec2.c H5Fsplit.c H5Fstdio.c \ H5G.c H5Gent.c H5Gnode.c H5Gstab.c H5H.c H5M.c H5MF.c H5MM.c H5O.c \ H5Ocont.c H5Odtype.c H5Oefl.c H5Olayout.c H5Oname.c H5Onull.c \ - H5Osdspace.c H5Ostab.c H5P.c H5T.c H5Tconv.c H5Tinit.c H5V.c + H5Osdspace.c H5Ostab.c H5P.c H5Psimp.c H5T.c H5Tconv.c H5Tinit.c \ + H5V.c LIB_OBJ=$(LIB_SRC:.c=.o) |