diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-14 23:15:12 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-14 23:15:12 (GMT) |
commit | be035551d36fdbcf0d717e8288e7950e4cb2e580 (patch) | |
tree | 00a8345e68579caea9b4d6ecfba27ac519667412 /c++/src | |
parent | 6ff7489679f1851d7146858deda6a6b8d311a2c7 (diff) | |
download | hdf5-be035551d36fdbcf0d717e8288e7950e4cb2e580.zip hdf5-be035551d36fdbcf0d717e8288e7950e4cb2e580.tar.gz hdf5-be035551d36fdbcf0d717e8288e7950e4cb2e580.tar.bz2 |
[svn-r2901] Purpose:
Adding Makefile
Diffstat (limited to 'c++/src')
-rw-r--r-- | c++/src/Makefile.in | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in new file mode 100644 index 0000000..a70b801 --- /dev/null +++ b/c++/src/Makefile.in @@ -0,0 +1,34 @@ +## +## HDF5-C++ Library Makefile(.in) +## +## Copyright (C) 2000 National Center for Supercomputing Applications. +## All rights reserved. +## +top_srcdir=@top_srcdir@ +top_builddir=../.. +srcdir=@srcdir@ +@COMMENCE@ + +hdf5_srcdir=$(top_srcdir)/../src +hdf5_builddir=$(top_builddir)/src + +TRACE=perl $(top_srcdir)/bin/trace + +## Add `-I.' to the C preprocessor flags. +CPPFLAGS=-I. -I$(hdf5_builddir) -I$(hdf5_srcdir) @CPPFLAGS@ + +## This is our main target +LIB=hdf5_cpp.la + +## Source and object files for the library +LIB_SRC=H5Exception.C H5RefCounter.C H5IdComponent.C H5Library.C \ + H5Attribute.C H5Object.C H5PropList.C H5FaccProp.C \ + H5FcreatProp.C H5DcreatProp.C H5DxferProp.C H5DataType.C \ + H5DataSpace.C H5AbstractDs.C H5AtomType.C H5PredType.C \ + H5EnumType.C H5IntType.C H5FloatType.C H5StrType.C \ + H5CompType.C H5DataSet.C H5CommonFG.C H5Group.C H5File.C +LIB_OBJ=$(LIB_SRC:.C=.lo) + +ARFLAGS=rc + +@CONCLUDE@ |