mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-11 16:01:00 +08:00
Updated the copyright notice--mostly by rearranging some text to make them consistent. Solution: Platforms tested: "h5committested"--sol is down, so, no SUn test. Misc. update:
57 lines
2.2 KiB
Makefile
57 lines
2.2 KiB
Makefile
##
|
|
## Copyright by the Board of Trustees of the University of Illinois.
|
|
## All rights reserved.
|
|
##
|
|
## This file is part of HDF5. The full HDF5 copyright notice, including
|
|
## terms governing use, modification, and redistribution, is contained in
|
|
## the files COPYING and Copyright.html. COPYING can be found at the root
|
|
## of the source code distribution tree; Copyright.html can be found at the
|
|
## root level of an installed copy of the electronic HDF5 document set and
|
|
## is linked from the top-level documents page. It can also be found at
|
|
## http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have
|
|
## access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu.
|
|
##
|
|
## HDF5-C++ Library Makefile(.in)
|
|
##
|
|
top_srcdir=@top_srcdir@
|
|
top_builddir=../..
|
|
srcdir=@srcdir@
|
|
@COMMENCE@
|
|
|
|
HDF_CXX="yes"
|
|
|
|
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=libhdf5_cpp.la
|
|
|
|
## Source and object files for the library
|
|
LIB_SRC=H5Exception.cpp H5RefCounter.cpp H5IdComponent.cpp H5Library.cpp \
|
|
H5Attribute.cpp H5Object.cpp H5PropList.cpp H5FaccProp.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
|
|
LIB_OBJ=$(LIB_SRC:.cpp=.lo)
|
|
|
|
PUB_HDR=H5Cpp.h H5AbstractDs.h H5AtomType.h H5Attribute.h H5Classes.h \
|
|
H5CommonFG.h H5CompType.h H5DataSet.h H5DataSpace.h H5DataType.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 H5RefCounter.h H5StrType.h
|
|
PUB_PROGS=h5c++
|
|
|
|
ARFLAGS=rs
|
|
|
|
## h5c++ is generated during configure time. Remove it only when distclean.
|
|
DISTCLEAN=h5c++
|
|
|
|
@CONCLUDE@
|