diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2004-08-07 05:55:46 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2004-08-07 05:55:46 (GMT) |
commit | 3ff3720c028f47aa0b9ea1e89592dcd42b82246f (patch) | |
tree | 60e32b0964aabc61b27ceeb1292790ddbfed9deb | |
parent | f5a65a7f1e35e11814edeac350c15eee28a2a74a (diff) | |
download | hdf5-3ff3720c028f47aa0b9ea1e89592dcd42b82246f.zip hdf5-3ff3720c028f47aa0b9ea1e89592dcd42b82246f.tar.gz hdf5-3ff3720c028f47aa0b9ea1e89592dcd42b82246f.tar.bz2 |
[svn-r9048] Purpose:
Add new files
Description:
Added H5VarLenType.cpp and H5ArrayType.cpp to LIB_SRC
Added H5CppDoc.h, H5VarLenType.h, and H5ArrayType.h to PUB_HDR
Platforms:
SunOS 5.7 (arabica)
Linux 2.4 (eirene)
-rw-r--r-- | c++/src/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in index afe0eac..1d38e28 100644 --- a/c++/src/Makefile.in +++ b/c++/src/Makefile.in @@ -37,7 +37,8 @@ LIB_SRC=H5Exception.cpp H5IdComponent.cpp H5Library.cpp \ H5FcreatProp.cpp H5DcreatProp.cpp H5DxferProp.cpp H5DataType.cpp \ H5DataSpace.cpp H5AbstractDs.cpp H5AtomType.cpp H5PredType.cpp \ H5EnumType.cpp H5IntType.cpp H5FloatType.cpp H5StrType.cpp \ - H5CompType.cpp H5DataSet.cpp H5CommonFG.cpp H5Group.cpp H5File.cpp + H5ArrayType.cpp H5VarLenType.cpp H5CompType.cpp H5DataSet.cpp \ + H5CommonFG.cpp H5Group.cpp H5File.cpp LIB_OBJ=$(LIB_SRC:.cpp=.lo) PUB_HDR=H5Cpp.h H5AbstractDs.h H5AtomType.h H5Attribute.h H5Classes.h \ @@ -45,7 +46,8 @@ PUB_HDR=H5Cpp.h H5AbstractDs.h H5AtomType.h H5Attribute.h H5Classes.h H5DcreatProp.h H5DxferProp.h H5EnumType.h H5Exception.h H5FaccProp.h \ H5FcreatProp.h H5File.h H5FloatType.h H5Group.h H5IdComponent.h \ H5Include.h H5IntType.h H5Library.h H5Object.h H5PredType.h \ - H5PropList.h H5StrType.h + H5PropList.h H5StrType.h H5CppDoc.h H5ArrayType.h H5VarLenType.h + PUB_PROGS=h5c++ ARFLAGS=rs |