summaryrefslogtreecommitdiffstats
path: root/c++
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2005-02-01 03:17:02 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2005-02-01 03:17:02 (GMT)
commit26303241febadd20aea77fc8a1d48f05823170af (patch)
tree4ba1d92050fa6cc33feab6a38bc9778f71bbb146 /c++
parent9f17319144fca94a852fd500487b0e4ae48e0997 (diff)
downloadhdf5-26303241febadd20aea77fc8a1d48f05823170af.zip
hdf5-26303241febadd20aea77fc8a1d48f05823170af.tar.gz
hdf5-26303241febadd20aea77fc8a1d48f05823170af.tar.bz2
[svn-r9902] Purpose:
Configuration feature Description: HDF5 now uses automake to generate Makefiles Solution: Makefile.in files are now generated from Makefile.am files. To reconfigure (after chaning a Makefile.am or configure.in): /bin/sh bin/reconfigure.sh Platforms tested: Many
Diffstat (limited to 'c++')
-rw-r--r--c++/Makefile.am46
-rw-r--r--c++/Makefile.in797
-rw-r--r--c++/examples/Dependencies3
-rw-r--r--c++/examples/Makefile.am91
-rw-r--r--c++/examples/Makefile.in676
-rw-r--r--c++/src/Dependencies1206
-rw-r--r--c++/src/Makefile.am56
-rw-r--r--c++/src/Makefile.in842
-rw-r--r--c++/test/Dependencies336
-rw-r--r--c++/test/Makefile.am36
-rw-r--r--c++/test/Makefile.in742
11 files changed, 2988 insertions, 1843 deletions
diff --git a/c++/Makefile.am b/c++/Makefile.am
new file mode 100644
index 0000000..c4d6209
--- /dev/null
+++ b/c++/Makefile.am
@@ -0,0 +1,46 @@
+#
+# 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.
+##
+## Makefile.am
+## Run automake to generate a Makefile.in from this file.
+#
+# Top-level HDF5-C++ Makefile(.in)
+#
+
+include $(top_srcdir)/config/commence.am
+
+SUBDIRS=src test
+DIST_SUBDIRS = $(SUBDIRS) examples
+
+# Clean and mostlyclean need to recurse into examples directory
+clean-local:
+ if test -f examples/Makefile; then \
+ (cd examples && $(MAKE) clean) || exit 1; \
+ fi;
+mostlyclean-local:
+ if test -f examples/Makefile; then \
+ (cd examples && $(MAKE) mostlyclean) || exit 1; \
+ fi;
+
+# Install examples
+install-examples uninstall-examples:
+ (cd examples && $(MAKE) $@) || exit 1;
+
+# Check that examples can be successfully built
+check-install:
+ $(MAKE) installcheck
+
+installcheck-local:
+ (cd examples && $(MAKE) $@) || exit 1;
+
+include $(top_srcdir)/config/conclude.am
diff --git a/c++/Makefile.in b/c++/Makefile.in
index 7c3c131..d349e85 100644
--- a/c++/Makefile.in
+++ b/c++/Makefile.in
@@ -1,137 +1,690 @@
-##
-## 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.
-##
-## Top-level HDF5-C++ Makefile(.in)
-##
-## This makefile mostly just reinvokes make in the various subdirectories
-## but does so in the correct order. You can alternatively invoke make from
-## each subdirectory manually.
-##
-top_srcdir=@top_srcdir@
-top_builddir=..
-srcdir=@srcdir@
-
-@COMMENCE@
-
-# Subdirectories in build-order (not including `examples')
-# We include examples now since those are our "tests" at this time. We
-# can remove it later.
-SUBDIRS=src test
-
-##############################################################################
-## T A R G E T S
-##
-## all: Build libraries, header files, tests, and programs in the
-## various subdirectories but does not run tests or install the
-## library, header files, or programs. The components can be
-## built individually with the targets lib, progs, and tests.
-##
-## check: Test the uninstalled library to make sure it works. You may
-## also say `test' or `_test' (`test' doesn't work from the top
-## level directory for some versions of make because `test' is
-## also a directory).
-##
-## install: Installs libraries, header files, programs, and documentation
-## in the various directories under the prefix directory (lib,
-## include, bin, man, info). Use the `--prefix=PATH' option
-## to `configure' (or `config.status') or say `--help' for
-## other alternatives. The default prefix is `/usr/local'.
-##
-## uninstall: Delete all the installed files that the `install' target
-## created (but not the noninstalled files such as `make all'
-## created).
-##
-## clean: Removes temporary files except those that record the
-## configuration and those that are part of the distribution.
-##
-## mostlyclean: Like `clean' except it doesn't delete a few files like
-## libraries, programs, and/or generated header files because
-## regenerating them is rarely necessary and takes a lot of time.
-##
-## distclean: Deletes all files that are created by configuring or building
-## HDF5. If you have unpacked the source and built HDF5 without
-## creating any other files, then `make distclean' will leave
-## only the files that were in the distrubution.
-##
-## maintainer-clean:
-## Like `distclean' except it deletes more files. It deletes
-## all generated files. This target is not intended for normal
-## users; it deletes files that may require special tools to
-## rebuild.
-##
-## TAGS: Updates the tags table for this program.
-##
-## dep depend: Builds dependencies in all subdirectories. These targets
-## might not be available on certain combinations of make
-## programs and C compilers. At the other extreme, the GNU
-## make used in combination with gcc will maintain dependency
-## information automatically.
-lib progs check test _test uninstall:
- @@SETX@; for d in $(SUBDIRS); do \
- (cd $$d && $(MAKE) $@) || exit 1; \
- done
+# Makefile.in generated by automake 1.6.3 from Makefile.am.
+# @configure_input@
+
+# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
+# Free Software Foundation, Inc.
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+
+#
+# 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.
+#
+# Top-level HDF5-C++ Makefile(.in)
+#
+
+#------------------------------------------------------------ -*- makefile -*-
+# The following section of this makefile comes from the
+# `./config/commence' file which was generated with config.status
+# from `./config/commence.in'.
+#-----------------------------------------------------------------------------
+
+#------------------------------------------------------------ -*- makefile -*-
+# The following section of this makefile comes from the
+# `./config/conclude' file which was generated with config.status
+# from `./config/conclude.in'.
+#-----------------------------------------------------------------------------
+SHELL = @SHELL@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+sbindir = @sbindir@
+libexecdir = @libexecdir@
+datadir = @datadir@
+sysconfdir = @sysconfdir@
+sharedstatedir = @sharedstatedir@
+localstatedir = @localstatedir@
+libdir = @libdir@
+infodir = @infodir@
+mandir = @mandir@
+oldincludedir = /usr/include
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+top_builddir = ..
+
+ACLOCAL = @ACLOCAL@
+AUTOCONF = @AUTOCONF@
+AUTOMAKE = @AUTOMAKE@
+AUTOHEADER = @AUTOHEADER@
+
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = @program_transform_name@
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+host_alias = @host_alias@
+host_triplet = @host@
+
+EXEEXT = @EXEEXT@
+OBJEXT = @OBJEXT@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+
+# Install directories that automake doesn't know about
+includedir = $(exec_prefix)/include
+ADD_PARALLEL_FILES = @ADD_PARALLEL_FILES@
+AMTAR = @AMTAR@
+AR = @AR@
+AS = @AS@
+AWK = @AWK@
+BUILD_PDB2HDF = @BUILD_PDB2HDF@
+BYTESEX = @BYTESEX@
+CC = @CC@
+CC_VERSION = @CC_VERSION@
+CONFIG_DATE = @CONFIG_DATE@
+CONFIG_MODE = @CONFIG_MODE@
+CONFIG_USER = @CONFIG_USER@
+CPPFLAGS = @CPPFLAGS@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+DEBUG_PKG = @DEBUG_PKG@
+DEFAULT_LIBS = @DEFAULT_LIBS@
+DEPDIR = @DEPDIR@
+DLLTOOL = @DLLTOOL@
+DYNAMIC_DIRS = @DYNAMIC_DIRS@
+ECHO = @ECHO@
+F77 = @F77@
+F9XSUFFIXFLAG = @F9XSUFFIXFLAG@
+FC = @FC@
+FFLAGS = @FFLAGS@
+FILTERS = @FILTERS@
+FSEARCH_DIRS = @FSEARCH_DIRS@
+GASS = @GASS@
+H5_VERSION = @H5_VERSION@
+HADDR_T = @HADDR_T@
+HDF5_INTERFACES = @HDF5_INTERFACES@
+HID_T = @HID_T@
+HL = @HL@
+HL_FOR = @HL_FOR@
+HSIZET = @HSIZET@
+HSIZE_T = @HSIZE_T@
+HSSIZE_T = @HSSIZE_T@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+INSTRUMENT_LIBRARY = @INSTRUMENT_LIBRARY@
+LIBTOOL = @LIBTOOL@
+LN_S = @LN_S@
+LT_STATIC_EXEC = @LT_STATIC_EXEC@
+MPE = @MPE@
+OBJDUMP = @OBJDUMP@
+OBJECT_NAMELEN_DEFAULT_F = @OBJECT_NAMELEN_DEFAULT_F@
+PACKAGE = @PACKAGE@
+PARALLEL = @PARALLEL@
+PERL = @PERL@
+PTHREAD = @PTHREAD@
+RANLIB = @RANLIB@
+ROOT = @ROOT@
+RUNPARALLEL = @RUNPARALLEL@
+RUNSERIAL = @RUNSERIAL@
+R_INTEGER = @R_INTEGER@
+R_LARGE = @R_LARGE@
+SEARCH = @SEARCH@
+SETX = @SETX@
+SIZE_T = @SIZE_T@
+SRB = @SRB@
+SSL = @SSL@
+STATIC_SHARED = @STATIC_SHARED@
+STRIP = @STRIP@
+TESTGASS = @TESTGASS@
+TESTPARALLEL = @TESTPARALLEL@
+TESTSRB = @TESTSRB@
+TRACE_API = @TRACE_API@
+USE_FILTER_DEFLATE = @USE_FILTER_DEFLATE@
+USE_FILTER_FLETCHER32 = @USE_FILTER_FLETCHER32@
+USE_FILTER_NBIT = @USE_FILTER_NBIT@
+USE_FILTER_SHUFFLE = @USE_FILTER_SHUFFLE@
+USE_FILTER_SZIP = @USE_FILTER_SZIP@
+VERSION = @VERSION@
+am__include = @am__include@
+am__quote = @am__quote@
+install_sh = @install_sh@
+
+# Shell commands used in Makefiles
+RM = rm -f
+CP = cp
+
+# Libraries to link to while building
+LIBHDF5 = $(top_builddir)/src/libhdf5.la
+LIBH5TEST = $(top_builddir)/test/libh5test.la
+LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la
+LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la
+LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la
+LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la
+LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la
+LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la
+docdir = $(exec_prefix)/doc
+
+# Scripts used to build examples
+H5CC = $(bindir)/h5cc
+H5CC_PP = $(bindir)/h5pcc
+H5FC = $(bindir)/h5fc
+H5FC_PP = $(bindir)/h5pfc
+
+# Make sure that these variables are exported to the Makefiles
+F9XMODEXT = @F9XMODEXT@
+
+SUBDIRS = src test
+DIST_SUBDIRS = $(SUBDIRS) examples
+
+# Automake needs to be taught how to build lib, progs, and tests targets.
+# These will be filled in automatically for the most part (e.g.,
+# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and
+# EXTRA_TEST variables are supplied to allow the user to force targets to
+# be built at certain times.
+LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \
+ $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB)
+
+PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \
+ $(EXTRA_PROG)
-tests TAGS dep depend:
- @@SETX@; for d in $(SUBDIRS); do \
- (cd $$d && $(MAKE) $@) || exit 1; \
+TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST)
+subdir = c++
+mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs
+CONFIG_HEADER = $(top_builddir)/src/H5config.h
+CONFIG_CLEAN_FILES =
+DIST_SOURCES =
+
+RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \
+ uninstall-info-recursive all-recursive install-data-recursive \
+ install-exec-recursive installdirs-recursive install-recursive \
+ uninstall-recursive check-recursive installcheck-recursive
+DIST_COMMON = Makefile.am Makefile.in
+all: all-recursive
+
+.SUFFIXES:
+$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
+ cd $(top_srcdir) && \
+ $(AUTOMAKE) --foreign c++/Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+
+mostlyclean-libtool:
+ -rm -f *.lo
+
+clean-libtool:
+ -rm -rf .libs _libs
+
+distclean-libtool:
+ -rm -f libtool
+uninstall-info-am:
+
+# This directory's subdirectories are mostly independent; you can cd
+# into them and run `make' without going through this Makefile.
+# To change the values of `make' variables: instead of editing Makefiles,
+# (1) if the variable is set in `config.status', edit `config.status'
+# (which will cause the Makefiles to be regenerated when you run `make');
+# (2) otherwise, pass the desired values on the `make' command line.
+$(RECURSIVE_TARGETS):
+ @set fnord $$MAKEFLAGS; amf=$$2; \
+ dot_seen=no; \
+ target=`echo $@ | sed s/-recursive//`; \
+ list='$(SUBDIRS)'; for subdir in $$list; do \
+ echo "Making $$target in $$subdir"; \
+ if test "$$subdir" = "."; then \
+ dot_seen=yes; \
+ local_target="$$target-am"; \
+ else \
+ local_target="$$target"; \
+ fi; \
+ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+ || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+ done; \
+ if test "$$dot_seen" = "no"; then \
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
+ fi; test -z "$$fail"
+
+mostlyclean-recursive clean-recursive distclean-recursive \
+maintainer-clean-recursive:
+ @set fnord $$MAKEFLAGS; amf=$$2; \
+ dot_seen=no; \
+ case "$@" in \
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
+ *) list='$(SUBDIRS)' ;; \
+ esac; \
+ rev=''; for subdir in $$list; do \
+ if test "$$subdir" = "."; then :; else \
+ rev="$$subdir $$rev"; \
+ fi; \
+ done; \
+ rev="$$rev ."; \
+ target=`echo $@ | sed s/-recursive//`; \
+ for subdir in $$rev; do \
+ echo "Making $$target in $$subdir"; \
+ if test "$$subdir" = "."; then \
+ local_target="$$target-am"; \
+ else \
+ local_target="$$target"; \
+ fi; \
+ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+ || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+ done && test -z "$$fail"
+tags-recursive:
+ list='$(SUBDIRS)'; for subdir in $$list; do \
+ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
done
-install-all:
- @$(MAKE) install
+ETAGS = etags
+ETAGSFLAGS =
+
+tags: TAGS
+
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | \
+ $(AWK) ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ mkid -fID $$unique
+
+TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
+ $(TAGS_FILES) $(LISP)
+ tags=; \
+ here=`pwd`; \
+ list='$(SUBDIRS)'; for subdir in $$list; do \
+ if test "$$subdir" = .; then :; else \
+ test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
+ fi; \
+ done; \
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | \
+ $(AWK) ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ test -z "$(ETAGS_ARGS)$$tags$$unique" \
+ || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+ $$tags $$unique
-install:
- @@SETX@; for d in $(SUBDIRS); do \
- (cd $$d && $(MAKE) $@) || exit 1; \
+GTAGS:
+ here=`$(am__cd) $(top_builddir) && pwd` \
+ && cd $(top_srcdir) \
+ && gtags -i $(GTAGS_ARGS) $$here
+
+distclean-tags:
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+
+top_distdir = ..
+distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+
+distdir: $(DISTFILES)
+ @list='$(DISTFILES)'; for file in $$list; do \
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+ if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+ dir="/$$dir"; \
+ $(mkinstalldirs) "$(distdir)$$dir"; \
+ else \
+ dir=''; \
+ fi; \
+ if test -d $$d/$$file; then \
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+ fi; \
+ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+ else \
+ test -f $(distdir)/$$file \
+ || cp -p $$d/$$file $(distdir)/$$file \
+ || exit 1; \
+ fi; \
done
- @$(MAKE) install-examples
- @$(LT) --mode=finish $(libdir);
+ list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
+ if test "$$subdir" = .; then :; else \
+ test -d $(distdir)/$$subdir \
+ || mkdir $(distdir)/$$subdir \
+ || exit 1; \
+ (cd $$subdir && \
+ $(MAKE) $(AM_MAKEFLAGS) \
+ top_distdir="$(top_distdir)" \
+ distdir=../$(distdir)/$$subdir \
+ distdir) \
+ || exit 1; \
+ fi; \
+ done
+check-am: all-am
+ $(MAKE) $(AM_MAKEFLAGS) check-TESTS
+check: check-recursive
+all-am: Makefile all-local
+installdirs: installdirs-recursive
+installdirs-am:
-install-examples:
- (cd examples && $(MAKE) $@) || exit 1;
+install: install-recursive
+install-exec: install-exec-recursive
+install-data: install-data-recursive
+uninstall: uninstall-recursive
-uninstall-examples:
+install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-recursive
+install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ INSTALL_STRIP_FLAG=-s \
+ `test -z '$(STRIP)' || \
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+ -rm -f Makefile $(CONFIG_CLEAN_FILES)
+
+maintainer-clean-generic:
+ @echo "This command is intended for maintainers to use"
+ @echo "it deletes files that may require special tools to rebuild."
+clean: clean-recursive
+
+clean-am: clean-generic clean-libtool clean-local mostlyclean-am
+
+distclean: distclean-recursive
+
+distclean-am: clean-am distclean-generic distclean-libtool \
+ distclean-tags
+
+dvi: dvi-recursive
+
+dvi-am:
+
+info: info-recursive
+
+info-am:
+
+install-data-am:
+
+install-exec-am:
+
+install-info: install-info-recursive
+
+install-man:
+
+installcheck-am: installcheck-local
+
+maintainer-clean: maintainer-clean-recursive
+
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-recursive
+
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool \
+ mostlyclean-local
+
+uninstall-am: uninstall-info-am
+
+uninstall-info: uninstall-info-recursive
+
+.PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am all-local check \
+ check-TESTS check-am clean clean-generic clean-libtool \
+ clean-local clean-recursive distclean distclean-generic \
+ distclean-libtool distclean-recursive distclean-tags distdir \
+ dvi dvi-am dvi-recursive info info-am info-recursive install \
+ install-am install-data install-data-am install-data-recursive \
+ install-exec install-exec-am install-exec-recursive \
+ install-info install-info-am install-info-recursive install-man \
+ install-recursive install-strip installcheck installcheck-am \
+ installcheck-local installdirs installdirs-am \
+ installdirs-recursive maintainer-clean maintainer-clean-generic \
+ maintainer-clean-recursive mostlyclean mostlyclean-generic \
+ mostlyclean-libtool mostlyclean-local mostlyclean-recursive \
+ tags tags-recursive uninstall uninstall-am uninstall-info-am \
+ uninstall-info-recursive uninstall-recursive
+
+
+# Let automake worry about Makefiles and configure components being up-to-
+# date.
+#
+#
+# The following rules insure that the Makefile is up-to-date by rerunning
+# various autoconf components (although not all versions of make assume
+# that the makefile is implicitly a target). We use time stamp files to
+# keep track of the most recent update of H5config.h.in and H5config.h
+# because autoheader and config.status don't update the modification time
+# if the contents don't change.
+# Invoke it by "gmake reconfigure".
+#
+# Graphically, the dependencies are:
+#
+# configure.in
+# | |
+# +-----------------+ +------------+
+# | |
+# stamp1 configure
+# (H5config.h.in) |
+# | | |
+# | +---------------+ +-----------+
+# | | |
+# | config.status
+# | |
+# | +------------------+
+# | |
+# stamp2
+# (H5config.h) Makefile.in et al
+# | |
+# +------------------+ +-----------+
+# | |
+# Makefile
+#
+# A side effect of updating stamp1 is to generate H5config.h.in and a
+# side effect of updating stamp2 is to generate H5config.h. When using
+# a version of make that doesn't treat the makefile as the initial target
+# the user may want to occassionally type `make Makefile' in any source
+# directory.
+# The `Makefile' target has been renamed to `reconfigure' so that the
+# autoconf and make depend processes do not start up automatically.
+# One must do `make reconfigure' explicitedly to start the process.
+# (When srcdir is used and if more than one machines are running,
+# this automatic Makefile/autoconf can get things unstable.)
+#
+#STAMP1=$(top_builddir)/config/stamp1
+#STAMP2=$(top_builddir)/config/stamp2
+
+#MAKEFILE_PARTS=$(srcdir)/Makefile.in \
+# $(top_srcdir)/config/commence.am \
+# $(top_srcdir)/config/conclude.am
+
+#$(STAMP1): $(top_srcdir)/configure.in
+# touch $(STAMP1)
+# -cd $(top_srcdir); autoheader
+
+#$(STAMP2): $(STAMP1) $(top_builddir)/config.status
+# touch $(STAMP2)
+# -cd $(top_builddir); \
+# CONFIG_FILES= CONFIG_HEADERS=src/H5config.h ./config.status
+
+# Automake supplies a rule to generate configure
+
+#$(top_builddir)/config.status: $(top_srcdir)/configure $(STAMP1)
+# -cd $(top_builddir); ./config.status --recheck
+
+# rerun the autoconf process if any configure components have changed.
+#reconfigure: $(MAKEFILE_PARTS) $(STAMP2)
+# -cd $(top_builddir); CONFIG_HEADERS= ./config.status
+# @for sub in @subdirs@ dummy; do \
+# if test $$sub != dummy; then \
+# -cd $$sub; $(MAKE) reconfigure; \
+# fi; \
+# done;
+
+#-----------------------------------------------------------------------------
+# The following section of this makefile comes from the middle of
+# `Makefile.am' from this directory.
+# It was generated by running automake on `Makefile.am' to create
+# `Makefile.in', then running `config.status' to create this Makefile.
+#-----------------------------------------------------------------------------
+
+# Clean and mostlyclean need to recurse into examples directory
+clean-local:
+ if test -f examples/Makefile; then \
+ (cd examples && $(MAKE) clean) || exit 1; \
+ fi;
+mostlyclean-local:
+ if test -f examples/Makefile; then \
+ (cd examples && $(MAKE) mostlyclean) || exit 1; \
+ fi;
+
+# Install examples
+install-examples uninstall-examples:
(cd examples && $(MAKE) $@) || exit 1;
-## Check if installation is correct by checking if examples can be built.
-## This requires a proper "make install" has been done.
+# Check that examples can be successfully built
check-install:
- (cd examples && $(MAKE) check) || exit 1
+ $(MAKE) installcheck
-.PHONY: all lib progs test _test install uninstall dep depend clean \
- mostlyclean distclean maintainer-clean
+installcheck-local:
+ (cd examples && $(MAKE) $@) || exit 1;
-clean mostlyclean:
- @@SETX@; for d in $(SUBDIRS) examples; do \
- (cd $$d && $(MAKE) $@); \
- done
- -$(RM) conftest conftest.c
+# lib/progs/tests targets recurse into subdirectories. build-* targets
+# build files in this directory.
+build-lib: $(LIB)
+build-progs: $(LIB) $(PROGS)
+build-tests: $(LIB) $(PROGS) $(TESTS)
-distclean:
- @@SETX@; for d in $(SUBDIRS) examples; do \
- (cd $$d && $(MAKE) $@); \
+lib progs tests ::
+ @$(MAKE) build-$@ || exit 1; \
+ for d in X $(SUBDIRS); do \
+ if test $$d != X -a $$d != .; then \
+ (set -x; cd $$d && $(MAKE) $@) || exit 1; \
+ fi; \
done
- -$(RM) config/commence config/conclude
- -$(RM) config/stamp1 config/stamp2 config/depend?
- -$(RM) config.cache config.log config.status configure.lineno
- -$(RM) src/H5config.h src/H5pubconf.h
- -$(RM) libtool Makefile so_locations
-
-maintainer-clean:
- @echo "This target is intended for maintainers to use;"
- @echo "it deletes files that may require special tools to rebuild."
- @@SETX@; for d in $(SUBDIRS) examples; do \
- (cd $$d && $(MAKE) $@); \
- done
- -$(RM) config.cache config.log config.status src/H5config.h
- -$(RM) configure src/H5config.h.in
+# Tell Automake to build tests when the user types `make all' (this is
+# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
+# Automake won't build them automatically, either.
+all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(TESTS)
+
+# make install-doc doesn't do anything outside of doc directory, but
+# Makefiles should recognize it.
+install-doc uninstall-doc:
+ @echo "Nothing to be done."
+
+# Run each test in order, passing $(TEST_FLAGS) to the program.
+# Since tests are done in a shell loop, "make -i" does apply inside it.
+# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
+# The timestamps give a rough idea how much time the tests use.
+#
+# Note that targets in TESTS (defined above) will be built when the user
+# types 'make tests' or 'make check', but only programs in TEST_PROG,
+# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed.
+check-TESTS: test
+
+test _test: $(PROGS) $(TESTS)
+ @if test -n "$(TEST_PROG)$(TEST_PROG_PARA)$(TEST_SCRIPT)"; then \
+ echo "===Tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \
+ fi
+ @for test in $(TEST_PROG) dummy; do \
+ if test $$test != dummy; then \
+ echo "============================"; \
+ if test "X$(HDF_FORTRAN)" = "Xyes"; then \
+ echo "Fortran API: Testing $$test $(TEST_FLAGS)"; \
+ elif test "X$(HDF_CXX)" = "Xyes"; then \
+ echo "C++ API: Testing $$test $(TEST_FLAGS)"; \
+ else \
+ echo "Testing $$test $(TEST_FLAGS)"; \
+ fi; \
+ echo "============================"; \
+ srcdir="$(srcdir)" \
+ $(RUNTEST) ./$$test $(TEST_FLAGS) || \
+ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \
+ break; \
+ echo ""; \
+ fi; \
+ done; \
+ test $$test = dummy || false
+ @if test -n "$(TEST_PROG_PARA)"; then \
+ echo "**** Hint ****"; \
+ echo "Parallel test files reside in the current directory" \
+ "by default."; \
+ echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \
+ echo " HDF5_PARAPREFIX=/PFS/user/me"; \
+ echo " export HDF5_PARAPREFIX"; \
+ echo " make check"; \
+ echo "**** end of Hint ****"; \
+ fi
+ @for test in $(TEST_PROG_PARA) dummy; do \
+ if test $$test != dummy; then \
+ echo "============================"; \
+ if test "X$(HDF_FORTRAN)" = "Xyes"; then \
+ echo "Fortran API: Testing $$test $(TEST_FLAGS)"; \
+ elif test "X$(HDF_CXX)" = "Xyes"; then \
+ echo "C++ API: Testing $$test $(TEST_FLAGS)"; \
+ else \
+ echo "Testing $$test $(TEST_FLAGS)"; \
+ fi; \
+ echo "============================"; \
+ srcdir="$(srcdir)" \
+ $(RUNPARALLEL) ./$$test $(TEST_FLAGS) || \
+ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \
+ break; \
+ echo ""; \
+ fi; \
+ done; \
+ test $$test = dummy || false
+ @for test in $(TEST_SCRIPT) dummy; do \
+ if test $$test != dummy; then \
+ echo "============================"; \
+ if test "X$(HDF_FORTRAN)" = "Xyes"; then \
+ echo "Fortran API: Testing $$test $(TEST_FLAGS)"; \
+ elif test "X$(HDF_CXX)" = "Xyes"; then \
+ echo "C++ API: Testing $$test $(TEST_FLAGS)"; \
+ else \
+ echo "Testing $$test $(TEST_FLAGS)"; \
+ fi; \
+ echo "============================"; \
+ RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \
+ srcdir="$(srcdir)" \
+ /bin/sh $$test $(TEST_FLAGS) || \
+ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \
+ break; \
+ echo ""; \
+ fi; \
+ done; \
+ test $$test = dummy || false
+ @if test -n "$(TEST_PROG)$(TEST_PROG_PARA)$(TEST_SCRIPT)"; then \
+ echo "===Tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\
+ fi
+
+# Run test with different Virtual File Driver
+check-vfd:
+ @for vfd in $(VFD_LIST) dummy; do \
+ if test $$vfd != dummy; then \
+ echo "============================"; \
+ echo "Testing Virtual File Driver $$vfd"; \
+ echo "============================"; \
+ HDF5_DRIVER=$$vfd $(MAKE) check; \
+ fi; \
+ done
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
diff --git a/c++/examples/Dependencies b/c++/examples/Dependencies
deleted file mode 100644
index f29a269..0000000
--- a/c++/examples/Dependencies
+++ /dev/null
@@ -1,3 +0,0 @@
-## This file is machine generated on GNU systems.
-## Only temporary changes may be made here.
-
diff --git a/c++/examples/Makefile.am b/c++/examples/Makefile.am
new file mode 100644
index 0000000..fb9ae98
--- /dev/null
+++ b/c++/examples/Makefile.am
@@ -0,0 +1,91 @@
+#
+# 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.
+##
+## Makefile.am
+## Run automake to generate a Makefile.in from this file.
+##
+#
+# HDF5 Library Examples Makefile(.in)
+#
+
+include $(top_srcdir)/config/commence.am
+
+# Use h5c++ to build examples, instead of reguar C++ compiler
+H5CPP=$(bindir)/h5c++
+
+# These are the programs that 'make all' or 'make prog' will build and
+# which 'make check' will run. List them in the order they should be run.
+TEST_PROG=create readdata writedata compound extend_ds chunks h5group
+
+EXAMPLE_PROG=$(TEST_PROG)
+
+# Tell conclude.in when to build the examples
+EXTRA_PROG=$(TEST_PROG)
+
+# These are the example files to be installed
+INSTALL_FILES=create.cpp readdata.cpp writedata.cpp compound.cpp \
+ extend_ds.cpp chunks.cpp h5group.cpp
+
+# These are the files that 'make clean' (and derivatives) will remove from this
+# directory. Since automake doesn't know about the examples, we need to
+# tell it to clean the example programs, too.
+MOSTLYCLEANFILES=*.h5
+CLEANFILES=$(EXTRA_PROG)
+
+# How to install examples
+EXAMPLEDIR=$(docdir)/hdf5/examples/c++
+
+$(EXAMPLEDIR):
+ -$(top_srcdir)/bin/mkdirs $@
+
+install-data-local:
+ $(MAKE) install-examples
+uninstall-local:
+ $(MAKE) uninstall-examples
+
+# Install source files, which are the examples with .cpp suffixes. Do the same
+# for uninstall.
+install-examples: $(EXAMPLEDIR)
+ @for f in X $(INSTALL_FILES); do \
+ if test $$f != X; then \
+ (set -x; $(INSTALL_DATA) $(top_srcdir)/c++/examples/$$f $(EXAMPLEDIR)/. || exit 1);\
+ fi; \
+ done
+
+uninstall-examples:
+ @if test -n "$(INSTALL_FILES)" -a -d $(EXAMPLEDIR); then \
+ set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_FILES).cpp; \
+ fi
+
+check-install:
+ $(MAKE) installcheck
+installcheck-local:
+ $(MAKE) check
+
+# How to build programs using h5c++
+$(EXTRA_PROG): $(H5CPP) $(LIBHDF5) $(LIBH5CPP)
+ $(H5CPP) $(CPPFLAGS) -o $@ $(srcdir)/$@.cpp
+
+# List dependencies for each program. Normally, automake would take
+# care of this for us, but if we tell automake about the programs it
+# will try to build them with the normal C++ compiler, not h5c++. This is
+# an inelegant way of solving the problem, unfortunately.
+create: $(srcdir)/create.cpp
+readdata: $(srcdir)/readdata.cpp
+writedata: $(srcdir)/writedata.cpp
+compound: $(srcdir)/compound.cpp
+extend_ds: $(srcdir)/extend_ds.cpp
+chunks: $(srcdir)/chunks.cpp
+h5group: $(srcdir)/h5group.cpp
+
+include $(top_srcdir)/config/conclude.am
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in
index e0a5b5e..13f94c9 100644
--- a/c++/examples/Makefile.in
+++ b/c++/examples/Makefile.in
@@ -1,77 +1,617 @@
-## HDF5-C++ examples/Makefile(.in)
-##
-##
-## 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.
-##
-##
-##
-top_srcdir=@top_srcdir@
-top_builddir=../..
-srcdir=@srcdir@
-
-@COMMENCE@
-
-HDF_CXX="yes"
-
-## Replace building CC with the just installed h5cc
-CXX=$(bindir)/h5c++
-CPPFLAGS=-I. -I$(srcdir) -I$(top_srcdir)/hl/src
-CFLAGS=
-
-hdf5_srcdir=$(top_srcdir)/src
-hdf5_builddir=$(top_builddir)/src
-
-## List all source files here. The list of object files will be
-## created by replacing the `.cpp' with a `.lo'. This list is necessary
-## for building automatic dependencies.
-TEST_SRC=create.cpp readdata.cpp writedata.cpp compound.cpp extend_ds.cpp \
- chunks.cpp h5group.cpp
-TEST_OBJ=$(TEST_SRC:.cpp=.lo)
-
-EXAMPLE_PROGS=$(TEST_SRC)
-
-## These are the programs that `make all' or `make tests' will build and which
-## `make check' will run. List them in the order they should be run.
-TEST_PROGS=$(TEST_SRC:.cpp=)
-
-##TEST_SCRIPTS=$(srcdir)/testexamples.sh
-
-## These are the files that `make clean' (and derivatives) will remove from
-## this directory.
-CLEAN=*.h5
-
-## How to build the programs... they all depend on the Fortran & C hdf5 libraries
-$(TEST_PROGS): $(LIB) $(LIBHDF5)
+# Makefile.in generated by automake 1.6.3 from Makefile.am.
+# @configure_input@
-compound: $(srcdir)/compound.cpp
- $(CXX) $(CPPFLAGS) -o $@ $(srcdir)/compound.cpp
+# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
+# Free Software Foundation, Inc.
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
-h5group: $(srcdir)/h5group.cpp
- $(CXX) $(CPPFLAGS) -o $@ $(srcdir)/h5group.cpp
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
-create: $(srcdir)/create.cpp
- $(CXX) $(CPPFLAGS) -o $@ $(srcdir)/create.cpp
+@SET_MAKE@
-readdata: $(srcdir)/readdata.cpp
- $(CXX) $(CPPFLAGS) -o $@ $(srcdir)/readdata.cpp
+#
+# 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 Library Examples Makefile(.in)
+#
-chunks: $(srcdir)/chunks.cpp
- $(CXX) $(CPPFLAGS) -o $@ $(srcdir)/chunks.cpp
+#------------------------------------------------------------ -*- makefile -*-
+# The following section of this makefile comes from the
+# `./config/commence' file which was generated with config.status
+# from `./config/commence.in'.
+#-----------------------------------------------------------------------------
-extend_ds: $(srcdir)/extend_ds.cpp
- $(CXX) $(CPPFLAGS) -o $@ $(srcdir)/extend_ds.cpp
+#------------------------------------------------------------ -*- makefile -*-
+# The following section of this makefile comes from the
+# `./config/conclude' file which was generated with config.status
+# from `./config/conclude.in'.
+#-----------------------------------------------------------------------------
+SHELL = @SHELL@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+sbindir = @sbindir@
+libexecdir = @libexecdir@
+datadir = @datadir@
+sysconfdir = @sysconfdir@
+sharedstatedir = @sharedstatedir@
+localstatedir = @localstatedir@
+libdir = @libdir@
+infodir = @infodir@
+mandir = @mandir@
+oldincludedir = /usr/include
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+top_builddir = ../..
+
+ACLOCAL = @ACLOCAL@
+AUTOCONF = @AUTOCONF@
+AUTOMAKE = @AUTOMAKE@
+AUTOHEADER = @AUTOHEADER@
+
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = @program_transform_name@
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+host_alias = @host_alias@
+host_triplet = @host@
+
+EXEEXT = @EXEEXT@
+OBJEXT = @OBJEXT@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+
+# Install directories that automake doesn't know about
+includedir = $(exec_prefix)/include
+ADD_PARALLEL_FILES = @ADD_PARALLEL_FILES@
+AMTAR = @AMTAR@
+AR = @AR@
+AS = @AS@
+AWK = @AWK@
+BUILD_PDB2HDF = @BUILD_PDB2HDF@
+BYTESEX = @BYTESEX@
+CC = @CC@
+CC_VERSION = @CC_VERSION@
+CONFIG_DATE = @CONFIG_DATE@
+CONFIG_MODE = @CONFIG_MODE@
+CONFIG_USER = @CONFIG_USER@
+CPPFLAGS = @CPPFLAGS@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+DEBUG_PKG = @DEBUG_PKG@
+DEFAULT_LIBS = @DEFAULT_LIBS@
+DEPDIR = @DEPDIR@
+DLLTOOL = @DLLTOOL@
+DYNAMIC_DIRS = @DYNAMIC_DIRS@
+ECHO = @ECHO@
+F77 = @F77@
+F9XSUFFIXFLAG = @F9XSUFFIXFLAG@
+FC = @FC@
+FFLAGS = @FFLAGS@
+FILTERS = @FILTERS@
+FSEARCH_DIRS = @FSEARCH_DIRS@
+GASS = @GASS@
+H5_VERSION = @H5_VERSION@
+HADDR_T = @HADDR_T@
+HDF5_INTERFACES = @HDF5_INTERFACES@
+HID_T = @HID_T@
+HL = @HL@
+HL_FOR = @HL_FOR@
+HSIZET = @HSIZET@
+HSIZE_T = @HSIZE_T@
+HSSIZE_T = @HSSIZE_T@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+INSTRUMENT_LIBRARY = @INSTRUMENT_LIBRARY@
+LIBTOOL = @LIBTOOL@
+LN_S = @LN_S@
+LT_STATIC_EXEC = @LT_STATIC_EXEC@
+MPE = @MPE@
+OBJDUMP = @OBJDUMP@
+OBJECT_NAMELEN_DEFAULT_F = @OBJECT_NAMELEN_DEFAULT_F@
+PACKAGE = @PACKAGE@
+PARALLEL = @PARALLEL@
+PERL = @PERL@
+PTHREAD = @PTHREAD@
+RANLIB = @RANLIB@
+ROOT = @ROOT@
+RUNPARALLEL = @RUNPARALLEL@
+RUNSERIAL = @RUNSERIAL@
+R_INTEGER = @R_INTEGER@
+R_LARGE = @R_LARGE@
+SEARCH = @SEARCH@
+SETX = @SETX@
+SIZE_T = @SIZE_T@
+SRB = @SRB@
+SSL = @SSL@
+STATIC_SHARED = @STATIC_SHARED@
+STRIP = @STRIP@
+TESTGASS = @TESTGASS@
+TESTPARALLEL = @TESTPARALLEL@
+TESTSRB = @TESTSRB@
+TRACE_API = @TRACE_API@
+USE_FILTER_DEFLATE = @USE_FILTER_DEFLATE@
+USE_FILTER_FLETCHER32 = @USE_FILTER_FLETCHER32@
+USE_FILTER_NBIT = @USE_FILTER_NBIT@
+USE_FILTER_SHUFFLE = @USE_FILTER_SHUFFLE@
+USE_FILTER_SZIP = @USE_FILTER_SZIP@
+VERSION = @VERSION@
+am__include = @am__include@
+am__quote = @am__quote@
+install_sh = @install_sh@
+
+# Shell commands used in Makefiles
+RM = rm -f
+CP = cp
+
+# Libraries to link to while building
+LIBHDF5 = $(top_builddir)/src/libhdf5.la
+LIBH5TEST = $(top_builddir)/test/libh5test.la
+LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la
+LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la
+LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la
+LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la
+LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la
+LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la
+docdir = $(exec_prefix)/doc
+
+# Scripts used to build examples
+H5CC = $(bindir)/h5cc
+H5CC_PP = $(bindir)/h5pcc
+H5FC = $(bindir)/h5fc
+H5FC_PP = $(bindir)/h5pfc
+
+# Make sure that these variables are exported to the Makefiles
+F9XMODEXT = @F9XMODEXT@
+
+# Use h5c++ to build examples, instead of reguar C++ compiler
+H5CPP = $(bindir)/h5c++
+
+# These are the programs that 'make all' or 'make prog' will build and
+# which 'make check' will run. List them in the order they should be run.
+TEST_PROG = create readdata writedata compound extend_ds chunks h5group
+
+EXAMPLE_PROG = $(TEST_PROG)
+
+# Tell conclude.in when to build the examples
+EXTRA_PROG = $(TEST_PROG)
+
+# These are the example files to be installed
+INSTALL_FILES = create.cpp readdata.cpp writedata.cpp compound.cpp \
+ extend_ds.cpp chunks.cpp h5group.cpp
+
+
+# These are the files that 'make clean' (and derivatives) will remove from this
+# directory. Since automake doesn't know about the examples, we need to
+# tell it to clean the example programs, too.
+MOSTLYCLEANFILES = *.h5
+CLEANFILES = $(EXTRA_PROG)
+
+# How to install examples
+EXAMPLEDIR = $(docdir)/hdf5/examples/c++
+
+# Automake needs to be taught how to build lib, progs, and tests targets.
+# These will be filled in automatically for the most part (e.g.,
+# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and
+# EXTRA_TEST variables are supplied to allow the user to force targets to
+# be built at certain times.
+LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \
+ $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB)
+
+PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \
+ $(EXTRA_PROG)
+
+TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST)
+subdir = c++/examples
+mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs
+CONFIG_HEADER = $(top_builddir)/src/H5config.h
+CONFIG_CLEAN_FILES =
+DIST_SOURCES =
+DIST_COMMON = Makefile.am Makefile.in
+all: all-am
+
+.SUFFIXES:
+$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
+ cd $(top_srcdir) && \
+ $(AUTOMAKE) --foreign c++/examples/Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+
+mostlyclean-libtool:
+ -rm -f *.lo
+
+clean-libtool:
+ -rm -rf .libs _libs
+
+distclean-libtool:
+ -rm -f libtool
+uninstall-info-am:
+tags: TAGS
+TAGS:
+
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+
+top_distdir = ../..
+distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+
+distdir: $(DISTFILES)
+ @list='$(DISTFILES)'; for file in $$list; do \
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+ if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+ dir="/$$dir"; \
+ $(mkinstalldirs) "$(distdir)$$dir"; \
+ else \
+ dir=''; \
+ fi; \
+ if test -d $$d/$$file; then \
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+ fi; \
+ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+ else \
+ test -f $(distdir)/$$file \
+ || cp -p $$d/$$file $(distdir)/$$file \
+ || exit 1; \
+ fi; \
+ done
+check-am: all-am
+ $(MAKE) $(AM_MAKEFLAGS) check-TESTS
+check: check-am
+all-am: Makefile all-local
+
+installdirs:
+
+install: install-am
+install-exec: install-exec-am
+install-data: install-data-am
+uninstall: uninstall-am
+
+install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-am
+install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ INSTALL_STRIP_FLAG=-s \
+ `test -z '$(STRIP)' || \
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+mostlyclean-generic:
+ -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
+
+clean-generic:
+ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
+
+distclean-generic:
+ -rm -f Makefile $(CONFIG_CLEAN_FILES)
+
+maintainer-clean-generic:
+ @echo "This command is intended for maintainers to use"
+ @echo "it deletes files that may require special tools to rebuild."
+clean: clean-am
+
+clean-am: clean-generic clean-libtool mostlyclean-am
+
+distclean: distclean-am
+distclean-am: clean-am distclean-generic distclean-libtool
+
+dvi: dvi-am
+
+dvi-am:
+
+info: info-am
+
+info-am:
+
+install-data-am: install-data-local
+
+install-exec-am:
+
+install-info: install-info-am
+
+install-man:
+
+installcheck-am: installcheck-local
+
+maintainer-clean: maintainer-clean-am
+
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-am
+
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
+
+uninstall-am: uninstall-info-am uninstall-local
+
+.PHONY: all all-am all-local check check-TESTS check-am clean \
+ clean-generic clean-libtool distclean distclean-generic \
+ distclean-libtool distdir dvi dvi-am info info-am install \
+ install-am install-data install-data-am install-data-local \
+ install-exec install-exec-am install-info install-info-am \
+ install-man install-strip installcheck installcheck-am \
+ installcheck-local installdirs maintainer-clean \
+ maintainer-clean-generic mostlyclean mostlyclean-generic \
+ mostlyclean-libtool uninstall uninstall-am uninstall-info-am \
+ uninstall-local
+
+
+# Let automake worry about Makefiles and configure components being up-to-
+# date.
+#
+#
+# The following rules insure that the Makefile is up-to-date by rerunning
+# various autoconf components (although not all versions of make assume
+# that the makefile is implicitly a target). We use time stamp files to
+# keep track of the most recent update of H5config.h.in and H5config.h
+# because autoheader and config.status don't update the modification time
+# if the contents don't change.
+# Invoke it by "gmake reconfigure".
+#
+# Graphically, the dependencies are:
+#
+# configure.in
+# | |
+# +-----------------+ +------------+
+# | |
+# stamp1 configure
+# (H5config.h.in) |
+# | | |
+# | +---------------+ +-----------+
+# | | |
+# | config.status
+# | |
+# | +------------------+
+# | |
+# stamp2
+# (H5config.h) Makefile.in et al
+# | |
+# +------------------+ +-----------+
+# | |
+# Makefile
+#
+# A side effect of updating stamp1 is to generate H5config.h.in and a
+# side effect of updating stamp2 is to generate H5config.h. When using
+# a version of make that doesn't treat the makefile as the initial target
+# the user may want to occassionally type `make Makefile' in any source
+# directory.
+# The `Makefile' target has been renamed to `reconfigure' so that the
+# autoconf and make depend processes do not start up automatically.
+# One must do `make reconfigure' explicitedly to start the process.
+# (When srcdir is used and if more than one machines are running,
+# this automatic Makefile/autoconf can get things unstable.)
+#
+#STAMP1=$(top_builddir)/config/stamp1
+#STAMP2=$(top_builddir)/config/stamp2
+
+#MAKEFILE_PARTS=$(srcdir)/Makefile.in \
+# $(top_srcdir)/config/commence.am \
+# $(top_srcdir)/config/conclude.am
+
+#$(STAMP1): $(top_srcdir)/configure.in
+# touch $(STAMP1)
+# -cd $(top_srcdir); autoheader
+
+#$(STAMP2): $(STAMP1) $(top_builddir)/config.status
+# touch $(STAMP2)
+# -cd $(top_builddir); \
+# CONFIG_FILES= CONFIG_HEADERS=src/H5config.h ./config.status
+
+# Automake supplies a rule to generate configure
+
+#$(top_builddir)/config.status: $(top_srcdir)/configure $(STAMP1)
+# -cd $(top_builddir); ./config.status --recheck
+
+# rerun the autoconf process if any configure components have changed.
+#reconfigure: $(MAKEFILE_PARTS) $(STAMP2)
+# -cd $(top_builddir); CONFIG_HEADERS= ./config.status
+# @for sub in @subdirs@ dummy; do \
+# if test $$sub != dummy; then \
+# -cd $$sub; $(MAKE) reconfigure; \
+# fi; \
+# done;
+
+#-----------------------------------------------------------------------------
+# The following section of this makefile comes from the middle of
+# `Makefile.am' from this directory.
+# It was generated by running automake on `Makefile.am' to create
+# `Makefile.in', then running `config.status' to create this Makefile.
+#-----------------------------------------------------------------------------
+
+$(EXAMPLEDIR):
+ -$(top_srcdir)/bin/mkdirs $@
+
+install-data-local:
+ $(MAKE) install-examples
+uninstall-local:
+ $(MAKE) uninstall-examples
+
+# Install source files, which are the examples with .cpp suffixes. Do the same
+# for uninstall.
+install-examples: $(EXAMPLEDIR)
+ @for f in X $(INSTALL_FILES); do \
+ if test $$f != X; then \
+ (set -x; $(INSTALL_DATA) $(top_srcdir)/c++/examples/$$f $(EXAMPLEDIR)/. || exit 1);\
+ fi; \
+ done
+
+uninstall-examples:
+ @if test -n "$(INSTALL_FILES)" -a -d $(EXAMPLEDIR); then \
+ set -x; cd $(EXAMPLEDIR) && $(RM) $(INSTALL_FILES).cpp; \
+ fi
+
+check-install:
+ $(MAKE) installcheck
+installcheck-local:
+ $(MAKE) check
+
+# How to build programs using h5c++
+$(EXTRA_PROG): $(H5CPP) $(LIBHDF5) $(LIBH5CPP)
+ $(H5CPP) $(CPPFLAGS) -o $@ $(srcdir)/$@.cpp
+
+# List dependencies for each program. Normally, automake would take
+# care of this for us, but if we tell automake about the programs it
+# will try to build them with the normal C++ compiler, not h5c++. This is
+# an inelegant way of solving the problem, unfortunately.
+create: $(srcdir)/create.cpp
+readdata: $(srcdir)/readdata.cpp
writedata: $(srcdir)/writedata.cpp
- $(CXX) $(CPPFLAGS) -o $@ $(srcdir)/writedata.cpp
+compound: $(srcdir)/compound.cpp
+extend_ds: $(srcdir)/extend_ds.cpp
+chunks: $(srcdir)/chunks.cpp
+h5group: $(srcdir)/h5group.cpp
+
+# lib/progs/tests targets recurse into subdirectories. build-* targets
+# build files in this directory.
+build-lib: $(LIB)
+build-progs: $(LIB) $(PROGS)
+build-tests: $(LIB) $(PROGS) $(TESTS)
+
+lib progs tests ::
+ @$(MAKE) build-$@ || exit 1; \
+ for d in X $(SUBDIRS); do \
+ if test $$d != X -a $$d != .; then \
+ (set -x; cd $$d && $(MAKE) $@) || exit 1; \
+ fi; \
+ done
+
+# Tell Automake to build tests when the user types `make all' (this is
+# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
+# Automake won't build them automatically, either.
+all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(TESTS)
+
+# make install-doc doesn't do anything outside of doc directory, but
+# Makefiles should recognize it.
+install-doc uninstall-doc:
+ @echo "Nothing to be done."
+
+# Run each test in order, passing $(TEST_FLAGS) to the program.
+# Since tests are done in a shell loop, "make -i" does apply inside it.
+# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
+# The timestamps give a rough idea how much time the tests use.
+#
+# Note that targets in TESTS (defined above) will be built when the user
+# types 'make tests' or 'make check', but only programs in TEST_PROG,
+# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed.
+check-TESTS: test
+
+test _test: $(PROGS) $(TESTS)
+ @if test -n "$(TEST_PROG)$(TEST_PROG_PARA)$(TEST_SCRIPT)"; then \
+ echo "===Tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \
+ fi
+ @for test in $(TEST_PROG) dummy; do \
+ if test $$test != dummy; then \
+ echo "============================"; \
+ if test "X$(HDF_FORTRAN)" = "Xyes"; then \
+ echo "Fortran API: Testing $$test $(TEST_FLAGS)"; \
+ elif test "X$(HDF_CXX)" = "Xyes"; then \
+ echo "C++ API: Testing $$test $(TEST_FLAGS)"; \
+ else \
+ echo "Testing $$test $(TEST_FLAGS)"; \
+ fi; \
+ echo "============================"; \
+ srcdir="$(srcdir)" \
+ $(RUNTEST) ./$$test $(TEST_FLAGS) || \
+ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \
+ break; \
+ echo ""; \
+ fi; \
+ done; \
+ test $$test = dummy || false
+ @if test -n "$(TEST_PROG_PARA)"; then \
+ echo "**** Hint ****"; \
+ echo "Parallel test files reside in the current directory" \
+ "by default."; \
+ echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \
+ echo " HDF5_PARAPREFIX=/PFS/user/me"; \
+ echo " export HDF5_PARAPREFIX"; \
+ echo " make check"; \
+ echo "**** end of Hint ****"; \
+ fi
+ @for test in $(TEST_PROG_PARA) dummy; do \
+ if test $$test != dummy; then \
+ echo "============================"; \
+ if test "X$(HDF_FORTRAN)" = "Xyes"; then \
+ echo "Fortran API: Testing $$test $(TEST_FLAGS)"; \
+ elif test "X$(HDF_CXX)" = "Xyes"; then \
+ echo "C++ API: Testing $$test $(TEST_FLAGS)"; \
+ else \
+ echo "Testing $$test $(TEST_FLAGS)"; \
+ fi; \
+ echo "============================"; \
+ srcdir="$(srcdir)" \
+ $(RUNPARALLEL) ./$$test $(TEST_FLAGS) || \
+ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \
+ break; \
+ echo ""; \
+ fi; \
+ done; \
+ test $$test = dummy || false
+ @for test in $(TEST_SCRIPT) dummy; do \
+ if test $$test != dummy; then \
+ echo "============================"; \
+ if test "X$(HDF_FORTRAN)" = "Xyes"; then \
+ echo "Fortran API: Testing $$test $(TEST_FLAGS)"; \
+ elif test "X$(HDF_CXX)" = "Xyes"; then \
+ echo "C++ API: Testing $$test $(TEST_FLAGS)"; \
+ else \
+ echo "Testing $$test $(TEST_FLAGS)"; \
+ fi; \
+ echo "============================"; \
+ RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \
+ srcdir="$(srcdir)" \
+ /bin/sh $$test $(TEST_FLAGS) || \
+ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \
+ break; \
+ echo ""; \
+ fi; \
+ done; \
+ test $$test = dummy || false
+ @if test -n "$(TEST_PROG)$(TEST_PROG_PARA)$(TEST_SCRIPT)"; then \
+ echo "===Tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\
+ fi
-@CONCLUDE@
+# Run test with different Virtual File Driver
+check-vfd:
+ @for vfd in $(VFD_LIST) dummy; do \
+ if test $$vfd != dummy; then \
+ echo "============================"; \
+ echo "Testing Virtual File Driver $$vfd"; \
+ echo "============================"; \
+ HDF5_DRIVER=$$vfd $(MAKE) check; \
+ fi; \
+ done
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
diff --git a/c++/src/Dependencies b/c++/src/Dependencies
deleted file mode 100644
index 0d0d602..0000000
--- a/c++/src/Dependencies
+++ /dev/null
@@ -1,1206 +0,0 @@
-## This file is machine generated on GNU systems.
-## Only temporary changes may be made here.
-
-H5Exception.o: \
- ../../../hdf5/./c++/src/H5Exception.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h
-H5IdComponent.o: \
- ../../../hdf5/./c++/src/H5IdComponent.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5Library.h \
- ../../../hdf5/c++/src/H5IdComponent.h
-H5Library.o: \
- ../../../hdf5/./c++/src/H5Library.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5Library.h
-H5Attribute.o: \
- ../../../hdf5/./c++/src/H5Attribute.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5AbstractDs.h \
- ../../../hdf5/c++/src/H5Attribute.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5DataSpace.h
-H5Object.o: \
- ../../../hdf5/./c++/src/H5Object.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5DataSpace.h \
- ../../../hdf5/c++/src/H5AbstractDs.h \
- ../../../hdf5/c++/src/H5Attribute.h
-H5PropList.o: \
- ../../../hdf5/./c++/src/H5PropList.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h
-H5FaccProp.o: \
- ../../../hdf5/./c++/src/H5FaccProp.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5FaccProp.h
-H5FcreatProp.o: \
- ../../../hdf5/./c++/src/H5FcreatProp.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5FcreatProp.h
-H5DcreatProp.o: \
- ../../../hdf5/./c++/src/H5DcreatProp.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5DcreatProp.h
-H5DxferProp.o: \
- ../../../hdf5/./c++/src/H5DxferProp.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5DxferProp.h
-H5DataType.o: \
- ../../../hdf5/./c++/src/H5DataType.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5DataSpace.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5AtomType.h \
- ../../../hdf5/c++/src/H5PredType.h \
- ../../../hdf5/src/H5private.h \
- ../../../hdf5/src/H5MPprivate.h \
- ../../../hdf5/src/H5FSprivate.h
-H5DataSpace.o: \
- ../../../hdf5/./c++/src/H5DataSpace.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5DataSpace.h
-H5AbstractDs.o: \
- ../../../hdf5/./c++/src/H5AbstractDs.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5AbstractDs.h \
- ../../../hdf5/c++/src/H5Alltypes.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5AtomType.h \
- ../../../hdf5/c++/src/H5EnumType.h \
- ../../../hdf5/c++/src/H5IntType.h \
- ../../../hdf5/c++/src/H5FloatType.h \
- ../../../hdf5/c++/src/H5StrType.h \
- ../../../hdf5/c++/src/H5CompType.h
-H5AtomType.o: \
- ../../../hdf5/./c++/src/H5AtomType.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5AtomType.h
-H5PredType.o: \
- ../../../hdf5/./c++/src/H5PredType.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5AtomType.h \
- ../../../hdf5/c++/src/H5Library.h \
- ../../../hdf5/c++/src/H5PredType.h
-H5EnumType.o: \
- ../../../hdf5/./c++/src/H5EnumType.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5AbstractDs.h \
- ../../../hdf5/c++/src/H5DxferProp.h \
- ../../../hdf5/c++/src/H5DataSpace.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5DataSet.h \
- ../../../hdf5/c++/src/H5AtomType.h \
- ../../../hdf5/c++/src/H5IntType.h \
- ../../../hdf5/c++/src/H5EnumType.h
-H5IntType.o: \
- ../../../hdf5/./c++/src/H5IntType.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5AbstractDs.h \
- ../../../hdf5/c++/src/H5DxferProp.h \
- ../../../hdf5/c++/src/H5DataSpace.h \
- ../../../hdf5/c++/src/H5AtomType.h \
- ../../../hdf5/c++/src/H5IntType.h \
- ../../../hdf5/c++/src/H5DataSet.h \
- ../../../hdf5/c++/src/H5PredType.h
-H5FloatType.o: \
- ../../../hdf5/./c++/src/H5FloatType.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5AbstractDs.h \
- ../../../hdf5/c++/src/H5DxferProp.h \
- ../../../hdf5/c++/src/H5DataSpace.h \
- ../../../hdf5/c++/src/H5AtomType.h \
- ../../../hdf5/c++/src/H5FloatType.h \
- ../../../hdf5/c++/src/H5DataSet.h \
- ../../../hdf5/c++/src/H5PredType.h
-H5StrType.o: \
- ../../../hdf5/./c++/src/H5StrType.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5AtomType.h \
- ../../../hdf5/c++/src/H5AbstractDs.h \
- ../../../hdf5/c++/src/H5DxferProp.h \
- ../../../hdf5/c++/src/H5DataSpace.h \
- ../../../hdf5/c++/src/H5StrType.h \
- ../../../hdf5/c++/src/H5DataSet.h \
- ../../../hdf5/c++/src/H5PredType.h
-H5CompType.o: \
- ../../../hdf5/./c++/src/H5CompType.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5Alltypes.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5AtomType.h \
- ../../../hdf5/c++/src/H5EnumType.h \
- ../../../hdf5/c++/src/H5IntType.h \
- ../../../hdf5/c++/src/H5FloatType.h \
- ../../../hdf5/c++/src/H5StrType.h \
- ../../../hdf5/c++/src/H5CompType.h \
- ../../../hdf5/c++/src/H5AbstractDs.h \
- ../../../hdf5/c++/src/H5DxferProp.h \
- ../../../hdf5/c++/src/H5DataSpace.h \
- ../../../hdf5/c++/src/H5DataSet.h \
- ../../../hdf5/src/H5private.h \
- ../../../hdf5/src/H5MPprivate.h \
- ../../../hdf5/src/H5FSprivate.h
-H5DataSet.o: \
- ../../../hdf5/./c++/src/H5DataSet.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5DxferProp.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5DcreatProp.h \
- ../../../hdf5/c++/src/H5DataSpace.h \
- ../../../hdf5/c++/src/H5AbstractDs.h \
- ../../../hdf5/c++/src/H5DataSet.h
-H5CommonFG.o: \
- ../../../hdf5/./c++/src/H5CommonFG.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5FaccProp.h \
- ../../../hdf5/c++/src/H5FcreatProp.h \
- ../../../hdf5/c++/src/H5DxferProp.h \
- ../../../hdf5/c++/src/H5DcreatProp.h \
- ../../../hdf5/c++/src/H5CommonFG.h \
- ../../../hdf5/c++/src/H5Group.h \
- ../../../hdf5/c++/src/H5AbstractDs.h \
- ../../../hdf5/c++/src/H5DataSpace.h \
- ../../../hdf5/c++/src/H5DataSet.h \
- ../../../hdf5/c++/src/H5File.h \
- ../../../hdf5/c++/src/H5Alltypes.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5AtomType.h \
- ../../../hdf5/c++/src/H5EnumType.h \
- ../../../hdf5/c++/src/H5IntType.h \
- ../../../hdf5/c++/src/H5FloatType.h \
- ../../../hdf5/c++/src/H5StrType.h \
- ../../../hdf5/c++/src/H5CompType.h
-H5Group.o: \
- ../../../hdf5/./c++/src/H5Group.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5AbstractDs.h \
- ../../../hdf5/c++/src/H5FaccProp.h \
- ../../../hdf5/c++/src/H5FcreatProp.h \
- ../../../hdf5/c++/src/H5DcreatProp.h \
- ../../../hdf5/c++/src/H5DxferProp.h \
- ../../../hdf5/c++/src/H5DataSpace.h \
- ../../../hdf5/c++/src/H5DataSet.h \
- ../../../hdf5/c++/src/H5CommonFG.h \
- ../../../hdf5/c++/src/H5Group.h \
- ../../../hdf5/c++/src/H5File.h \
- ../../../hdf5/c++/src/H5Alltypes.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5AtomType.h \
- ../../../hdf5/c++/src/H5EnumType.h \
- ../../../hdf5/c++/src/H5IntType.h \
- ../../../hdf5/c++/src/H5FloatType.h \
- ../../../hdf5/c++/src/H5StrType.h \
- ../../../hdf5/c++/src/H5CompType.h
-H5File.o: \
- ../../../hdf5/./c++/src/H5File.cpp \
- ../../../hdf5/c++/src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/src/H5Exception.h \
- ../../../hdf5/c++/src/H5IdComponent.h \
- ../../../hdf5/c++/src/H5PropList.h \
- ../../../hdf5/c++/src/H5Object.h \
- ../../../hdf5/c++/src/H5Classes.h \
- ../../../hdf5/c++/src/H5FaccProp.h \
- ../../../hdf5/c++/src/H5FcreatProp.h \
- ../../../hdf5/c++/src/H5DxferProp.h \
- ../../../hdf5/c++/src/H5DcreatProp.h \
- ../../../hdf5/c++/src/H5CommonFG.h \
- ../../../hdf5/c++/src/H5Group.h \
- ../../../hdf5/c++/src/H5AbstractDs.h \
- ../../../hdf5/c++/src/H5DataSpace.h \
- ../../../hdf5/c++/src/H5DataSet.h \
- ../../../hdf5/c++/src/H5File.h \
- ../../../hdf5/c++/src/H5Alltypes.h \
- ../../../hdf5/c++/src/H5DataType.h \
- ../../../hdf5/c++/src/H5AtomType.h \
- ../../../hdf5/c++/src/H5EnumType.h \
- ../../../hdf5/c++/src/H5IntType.h \
- ../../../hdf5/c++/src/H5FloatType.h \
- ../../../hdf5/c++/src/H5StrType.h \
- ../../../hdf5/c++/src/H5CompType.h
diff --git a/c++/src/Makefile.am b/c++/src/Makefile.am
new file mode 100644
index 0000000..24c618d
--- /dev/null
+++ b/c++/src/Makefile.am
@@ -0,0 +1,56 @@
+#
+# 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.
+##
+## Makefile.am
+## Run automake to generate a Makefile.in from this file.
+#
+# HDF5-C++ Makefile(.in)
+#
+
+include $(top_srcdir)/config/commence.am
+
+# Include src directory
+AM_CPPFLAGS=-I$(top_srcdir)/src
+
+# This is our main target
+lib_LTLIBRARIES=libhdf5_cpp.la
+
+# Build the library statically because some compliers can only link one
+# dynamic library, and that's the main hdf5 library (which is much larger
+# than this one).
+libhdf5_cpp_la_LDFLAGS=-static
+
+bin_SCRIPTS=h5c++
+
+# Source files for the library
+libhdf5_cpp_la_SOURCES=H5Exception.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 \
+ H5ArrayType.cpp H5VarLenType.cpp H5CompType.cpp H5DataSet.cpp \
+ H5CommonFG.cpp H5Group.cpp H5File.cpp
+
+# Public headers
+include_HEADERS=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 H5StrType.h H5CppDoc.h H5ArrayType.h H5VarLenType.h
+
+# h5c++ and libhdf5.settings are generated during configure. Remove only when
+# distclean.
+DISTCLEANFILES=h5c++ libhdf5.settings
+
+include $(top_srcdir)/config/conclude.am
diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in
index 1d38e28..af17a34 100644
--- a/c++/src/Makefile.in
+++ b/c++/src/Makefile.in
@@ -1,59 +1,805 @@
-##
-## 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 H5IdComponent.cpp H5Library.cpp \
- H5Attribute.cpp H5Object.cpp H5PropList.cpp H5FaccProp.cpp \
+# Makefile.in generated by automake 1.6.3 from Makefile.am.
+# @configure_input@
+
+# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
+# Free Software Foundation, Inc.
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+
+#
+# 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++ Makefile(.in)
+#
+
+#------------------------------------------------------------ -*- makefile -*-
+# The following section of this makefile comes from the
+# `./config/commence' file which was generated with config.status
+# from `./config/commence.in'.
+#-----------------------------------------------------------------------------
+
+#------------------------------------------------------------ -*- makefile -*-
+# The following section of this makefile comes from the
+# `./config/conclude' file which was generated with config.status
+# from `./config/conclude.in'.
+#-----------------------------------------------------------------------------
+SHELL = @SHELL@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+sbindir = @sbindir@
+libexecdir = @libexecdir@
+datadir = @datadir@
+sysconfdir = @sysconfdir@
+sharedstatedir = @sharedstatedir@
+localstatedir = @localstatedir@
+libdir = @libdir@
+infodir = @infodir@
+mandir = @mandir@
+oldincludedir = /usr/include
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+top_builddir = ../..
+
+ACLOCAL = @ACLOCAL@
+AUTOCONF = @AUTOCONF@
+AUTOMAKE = @AUTOMAKE@
+AUTOHEADER = @AUTOHEADER@
+
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = @program_transform_name@
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+host_alias = @host_alias@
+host_triplet = @host@
+
+EXEEXT = @EXEEXT@
+OBJEXT = @OBJEXT@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+
+# Install directories that automake doesn't know about
+includedir = $(exec_prefix)/include
+ADD_PARALLEL_FILES = @ADD_PARALLEL_FILES@
+AMTAR = @AMTAR@
+AR = @AR@
+AS = @AS@
+AWK = @AWK@
+BUILD_PDB2HDF = @BUILD_PDB2HDF@
+BYTESEX = @BYTESEX@
+CC = @CC@
+CC_VERSION = @CC_VERSION@
+CONFIG_DATE = @CONFIG_DATE@
+CONFIG_MODE = @CONFIG_MODE@
+CONFIG_USER = @CONFIG_USER@
+CPPFLAGS = @CPPFLAGS@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+DEBUG_PKG = @DEBUG_PKG@
+DEFAULT_LIBS = @DEFAULT_LIBS@
+DEPDIR = @DEPDIR@
+DLLTOOL = @DLLTOOL@
+DYNAMIC_DIRS = @DYNAMIC_DIRS@
+ECHO = @ECHO@
+F77 = @F77@
+F9XSUFFIXFLAG = @F9XSUFFIXFLAG@
+FC = @FC@
+FFLAGS = @FFLAGS@
+FILTERS = @FILTERS@
+FSEARCH_DIRS = @FSEARCH_DIRS@
+GASS = @GASS@
+H5_VERSION = @H5_VERSION@
+HADDR_T = @HADDR_T@
+HDF5_INTERFACES = @HDF5_INTERFACES@
+HID_T = @HID_T@
+HL = @HL@
+HL_FOR = @HL_FOR@
+HSIZET = @HSIZET@
+HSIZE_T = @HSIZE_T@
+HSSIZE_T = @HSSIZE_T@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+INSTRUMENT_LIBRARY = @INSTRUMENT_LIBRARY@
+LIBTOOL = @LIBTOOL@
+LN_S = @LN_S@
+LT_STATIC_EXEC = @LT_STATIC_EXEC@
+MPE = @MPE@
+OBJDUMP = @OBJDUMP@
+OBJECT_NAMELEN_DEFAULT_F = @OBJECT_NAMELEN_DEFAULT_F@
+PACKAGE = @PACKAGE@
+PARALLEL = @PARALLEL@
+PERL = @PERL@
+PTHREAD = @PTHREAD@
+RANLIB = @RANLIB@
+ROOT = @ROOT@
+RUNPARALLEL = @RUNPARALLEL@
+RUNSERIAL = @RUNSERIAL@
+R_INTEGER = @R_INTEGER@
+R_LARGE = @R_LARGE@
+SEARCH = @SEARCH@
+SETX = @SETX@
+SIZE_T = @SIZE_T@
+SRB = @SRB@
+SSL = @SSL@
+STATIC_SHARED = @STATIC_SHARED@
+STRIP = @STRIP@
+TESTGASS = @TESTGASS@
+TESTPARALLEL = @TESTPARALLEL@
+TESTSRB = @TESTSRB@
+TRACE_API = @TRACE_API@
+USE_FILTER_DEFLATE = @USE_FILTER_DEFLATE@
+USE_FILTER_FLETCHER32 = @USE_FILTER_FLETCHER32@
+USE_FILTER_NBIT = @USE_FILTER_NBIT@
+USE_FILTER_SHUFFLE = @USE_FILTER_SHUFFLE@
+USE_FILTER_SZIP = @USE_FILTER_SZIP@
+VERSION = @VERSION@
+am__include = @am__include@
+am__quote = @am__quote@
+install_sh = @install_sh@
+
+# Shell commands used in Makefiles
+RM = rm -f
+CP = cp
+
+# Libraries to link to while building
+LIBHDF5 = $(top_builddir)/src/libhdf5.la
+LIBH5TEST = $(top_builddir)/test/libh5test.la
+LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la
+LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la
+LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la
+LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la
+LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la
+LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la
+docdir = $(exec_prefix)/doc
+
+# Scripts used to build examples
+H5CC = $(bindir)/h5cc
+H5CC_PP = $(bindir)/h5pcc
+H5FC = $(bindir)/h5fc
+H5FC_PP = $(bindir)/h5pfc
+
+# Make sure that these variables are exported to the Makefiles
+F9XMODEXT = @F9XMODEXT@
+
+# Include src directory
+AM_CPPFLAGS = -I$(top_srcdir)/src
+
+# This is our main target
+lib_LTLIBRARIES = libhdf5_cpp.la
+
+# Build the library statically because some compliers can only link one
+# dynamic library, and that's the main hdf5 library (which is much larger
+# than this one).
+libhdf5_cpp_la_LDFLAGS = -static
+
+bin_SCRIPTS = h5c++
+
+# Source files for the library
+libhdf5_cpp_la_SOURCES = H5Exception.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 \
- H5ArrayType.cpp H5VarLenType.cpp H5CompType.cpp H5DataSet.cpp \
- H5CommonFG.cpp H5Group.cpp H5File.cpp
-LIB_OBJ=$(LIB_SRC:.cpp=.lo)
+ H5DataSpace.cpp H5AbstractDs.cpp H5AtomType.cpp H5PredType.cpp \
+ H5EnumType.cpp H5IntType.cpp H5FloatType.cpp H5StrType.cpp \
+ H5ArrayType.cpp H5VarLenType.cpp H5CompType.cpp H5DataSet.cpp \
+ H5CommonFG.cpp H5Group.cpp H5File.cpp
-PUB_HDR=H5Cpp.h H5AbstractDs.h H5AtomType.h H5Attribute.h H5Classes.h \
+
+# Public headers
+include_HEADERS = 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 H5StrType.h H5CppDoc.h H5ArrayType.h H5VarLenType.h
-PUB_PROGS=h5c++
-ARFLAGS=rs
+# h5c++ and libhdf5.settings are generated during configure. Remove only when
+# distclean.
+DISTCLEANFILES = h5c++ libhdf5.settings
+
+# Automake needs to be taught how to build lib, progs, and tests targets.
+# These will be filled in automatically for the most part (e.g.,
+# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and
+# EXTRA_TEST variables are supplied to allow the user to force targets to
+# be built at certain times.
+LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \
+ $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB)
+
+PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \
+ $(EXTRA_PROG)
+
+TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST)
+subdir = c++/src
+mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs
+CONFIG_HEADER = $(top_builddir)/src/H5config.h
+CONFIG_CLEAN_FILES = h5c++
+LTLIBRARIES = $(lib_LTLIBRARIES)
+
+libhdf5_cpp_la_LIBADD =
+am_libhdf5_cpp_la_OBJECTS = H5Exception.lo H5IdComponent.lo H5Library.lo \
+ H5Attribute.lo H5Object.lo H5PropList.lo H5FaccProp.lo \
+ H5FcreatProp.lo H5DcreatProp.lo H5DxferProp.lo H5DataType.lo \
+ H5DataSpace.lo H5AbstractDs.lo H5AtomType.lo H5PredType.lo \
+ H5EnumType.lo H5IntType.lo H5FloatType.lo H5StrType.lo \
+ H5ArrayType.lo H5VarLenType.lo H5CompType.lo H5DataSet.lo \
+ H5CommonFG.lo H5Group.lo H5File.lo
+libhdf5_cpp_la_OBJECTS = $(am_libhdf5_cpp_la_OBJECTS)
+SCRIPTS = $(bin_SCRIPTS)
+
+
+DEFS = @DEFS@
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src
+LDFLAGS = @LDFLAGS@
+LIBS = @LIBS@
+depcomp = $(SHELL) $(top_srcdir)/bin/depcomp
+am__depfiles_maybe = depfiles
+@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/H5AbstractDs.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5ArrayType.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5AtomType.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5Attribute.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5CommonFG.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5CompType.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5DataSet.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5DataSpace.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5DataType.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5DcreatProp.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5DxferProp.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5EnumType.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5Exception.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5FaccProp.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5FcreatProp.Plo ./$(DEPDIR)/H5File.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5FloatType.Plo ./$(DEPDIR)/H5Group.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5IdComponent.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5IntType.Plo ./$(DEPDIR)/H5Library.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5Object.Plo ./$(DEPDIR)/H5PredType.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5PropList.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5StrType.Plo \
+@AMDEP_TRUE@ ./$(DEPDIR)/H5VarLenType.Plo
+CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
+LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
+ $(AM_CXXFLAGS) $(CXXFLAGS)
+CXXLD = $(CXX)
+CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
+CXXFLAGS = @CXXFLAGS@
+DIST_SOURCES = $(libhdf5_cpp_la_SOURCES)
+HEADERS = $(include_HEADERS)
+
+DIST_COMMON = $(include_HEADERS) Makefile.am Makefile.in h5c++.in
+SOURCES = $(libhdf5_cpp_la_SOURCES)
+
+all: all-am
+
+.SUFFIXES:
+.SUFFIXES: .cpp .lo .o .obj
+$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
+ cd $(top_srcdir) && \
+ $(AUTOMAKE) --foreign c++/src/Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+h5c++: $(top_builddir)/config.status h5c++.in
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
+libLTLIBRARIES_INSTALL = $(INSTALL)
+install-libLTLIBRARIES: $(lib_LTLIBRARIES)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(libdir)
+ @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
+ if test -f $$p; then \
+ f="`echo $$p | sed -e 's|^.*/||'`"; \
+ echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \
+ $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \
+ else :; fi; \
+ done
+
+uninstall-libLTLIBRARIES:
+ @$(NORMAL_UNINSTALL)
+ @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
+ p="`echo $$p | sed -e 's|^.*/||'`"; \
+ echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \
+ $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \
+ done
+
+clean-libLTLIBRARIES:
+ -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
+ @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
+ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
+ test -z "$dir" && dir=.; \
+ echo "rm -f \"$${dir}/so_locations\""; \
+ rm -f "$${dir}/so_locations"; \
+ done
+libhdf5_cpp.la: $(libhdf5_cpp_la_OBJECTS) $(libhdf5_cpp_la_DEPENDENCIES)
+ $(CXXLINK) -rpath $(libdir) $(libhdf5_cpp_la_LDFLAGS) $(libhdf5_cpp_la_OBJECTS) $(libhdf5_cpp_la_LIBADD) $(LIBS)
+binSCRIPT_INSTALL = $(INSTALL_SCRIPT)
+install-binSCRIPTS: $(bin_SCRIPTS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(bindir)
+ @list='$(bin_SCRIPTS)'; for p in $$list; do \
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+ if test -f $$d$$p; then \
+ f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
+ echo " $(binSCRIPT_INSTALL) $$d$$p $(DESTDIR)$(bindir)/$$f"; \
+ $(binSCRIPT_INSTALL) $$d$$p $(DESTDIR)$(bindir)/$$f; \
+ else :; fi; \
+ done
+
+uninstall-binSCRIPTS:
+ @$(NORMAL_UNINSTALL)
+ @list='$(bin_SCRIPTS)'; for p in $$list; do \
+ f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
+ echo " rm -f $(DESTDIR)$(bindir)/$$f"; \
+ rm -f $(DESTDIR)$(bindir)/$$f; \
+ done
+
+mostlyclean-compile:
+ -rm -f *.$(OBJEXT) core *.core
+
+distclean-compile:
+ -rm -f *.tab.c
+
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5AbstractDs.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5ArrayType.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5AtomType.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5Attribute.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5CommonFG.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5CompType.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5DataSet.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5DataSpace.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5DataType.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5DcreatProp.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5DxferProp.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5EnumType.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5Exception.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5FaccProp.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5FcreatProp.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5File.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5FloatType.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5Group.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5IdComponent.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5IntType.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5Library.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5Object.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5PredType.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5PropList.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5StrType.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5VarLenType.Plo@am__quote@
+
+distclean-depend:
+ -rm -rf ./$(DEPDIR)
+
+.cpp.o:
+@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ $(CXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
+
+.cpp.obj:
+@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ $(CXXCOMPILE) -c -o $@ `cygpath -w $<`
+
+.cpp.lo:
+@AMDEP_TRUE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@
+@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ $(LTCXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
+CXXDEPMODE = @CXXDEPMODE@
+
+mostlyclean-libtool:
+ -rm -f *.lo
+
+clean-libtool:
+ -rm -rf .libs _libs
+
+distclean-libtool:
+ -rm -f libtool
+uninstall-info-am:
+includeHEADERS_INSTALL = $(INSTALL_HEADER)
+install-includeHEADERS: $(include_HEADERS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(includedir)
+ @list='$(include_HEADERS)'; for p in $$list; do \
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+ f="`echo $$p | sed -e 's|^.*/||'`"; \
+ echo " $(includeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(includedir)/$$f"; \
+ $(includeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(includedir)/$$f; \
+ done
+
+uninstall-includeHEADERS:
+ @$(NORMAL_UNINSTALL)
+ @list='$(include_HEADERS)'; for p in $$list; do \
+ f="`echo $$p | sed -e 's|^.*/||'`"; \
+ echo " rm -f $(DESTDIR)$(includedir)/$$f"; \
+ rm -f $(DESTDIR)$(includedir)/$$f; \
+ done
+
+ETAGS = etags
+ETAGSFLAGS =
+
+tags: TAGS
+
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | \
+ $(AWK) ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ mkid -fID $$unique
+
+TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
+ $(TAGS_FILES) $(LISP)
+ tags=; \
+ here=`pwd`; \
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | \
+ $(AWK) ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ test -z "$(ETAGS_ARGS)$$tags$$unique" \
+ || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+ $$tags $$unique
+
+GTAGS:
+ here=`$(am__cd) $(top_builddir) && pwd` \
+ && cd $(top_srcdir) \
+ && gtags -i $(GTAGS_ARGS) $$here
+
+distclean-tags:
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+
+top_distdir = ../..
+distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+
+distdir: $(DISTFILES)
+ @list='$(DISTFILES)'; for file in $$list; do \
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+ if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+ dir="/$$dir"; \
+ $(mkinstalldirs) "$(distdir)$$dir"; \
+ else \
+ dir=''; \
+ fi; \
+ if test -d $$d/$$file; then \
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+ fi; \
+ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+ else \
+ test -f $(distdir)/$$file \
+ || cp -p $$d/$$file $(distdir)/$$file \
+ || exit 1; \
+ fi; \
+ done
+check-am: all-am
+ $(MAKE) $(AM_MAKEFLAGS) check-TESTS
+check: check-am
+all-am: Makefile $(LTLIBRARIES) $(SCRIPTS) $(HEADERS) all-local
+
+installdirs:
+ $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(bindir) $(DESTDIR)$(includedir)
+
+install: install-am
+install-exec: install-exec-am
+install-data: install-data-am
+uninstall: uninstall-am
+
+install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-am
+install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ INSTALL_STRIP_FLAG=-s \
+ `test -z '$(STRIP)' || \
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+ -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
+
+maintainer-clean-generic:
+ @echo "This command is intended for maintainers to use"
+ @echo "it deletes files that may require special tools to rebuild."
+clean: clean-am
+
+clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
+ mostlyclean-am
+
+distclean: distclean-am
+
+distclean-am: clean-am distclean-compile distclean-depend \
+ distclean-generic distclean-libtool distclean-tags
+
+dvi: dvi-am
+
+dvi-am:
+
+info: info-am
+
+info-am:
+
+install-data-am: install-includeHEADERS
+
+install-exec-am: install-binSCRIPTS install-libLTLIBRARIES
+
+install-info: install-info-am
+
+install-man:
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-am
+
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-am
+
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
+ mostlyclean-libtool
+
+uninstall-am: uninstall-binSCRIPTS uninstall-includeHEADERS \
+ uninstall-info-am uninstall-libLTLIBRARIES
+
+.PHONY: GTAGS all all-am all-local check check-TESTS check-am clean \
+ clean-generic clean-libLTLIBRARIES clean-libtool distclean \
+ distclean-compile distclean-depend distclean-generic \
+ distclean-libtool distclean-tags distdir dvi dvi-am info \
+ info-am install install-am install-binSCRIPTS install-data \
+ install-data-am install-exec install-exec-am \
+ install-includeHEADERS install-info install-info-am \
+ install-libLTLIBRARIES install-man install-strip installcheck \
+ installcheck-am installdirs maintainer-clean \
+ maintainer-clean-generic mostlyclean mostlyclean-compile \
+ mostlyclean-generic mostlyclean-libtool tags uninstall \
+ uninstall-am uninstall-binSCRIPTS uninstall-includeHEADERS \
+ uninstall-info-am uninstall-libLTLIBRARIES
+
+
+# Let automake worry about Makefiles and configure components being up-to-
+# date.
+#
+#
+# The following rules insure that the Makefile is up-to-date by rerunning
+# various autoconf components (although not all versions of make assume
+# that the makefile is implicitly a target). We use time stamp files to
+# keep track of the most recent update of H5config.h.in and H5config.h
+# because autoheader and config.status don't update the modification time
+# if the contents don't change.
+# Invoke it by "gmake reconfigure".
+#
+# Graphically, the dependencies are:
+#
+# configure.in
+# | |
+# +-----------------+ +------------+
+# | |
+# stamp1 configure
+# (H5config.h.in) |
+# | | |
+# | +---------------+ +-----------+
+# | | |
+# | config.status
+# | |
+# | +------------------+
+# | |
+# stamp2
+# (H5config.h) Makefile.in et al
+# | |
+# +------------------+ +-----------+
+# | |
+# Makefile
+#
+# A side effect of updating stamp1 is to generate H5config.h.in and a
+# side effect of updating stamp2 is to generate H5config.h. When using
+# a version of make that doesn't treat the makefile as the initial target
+# the user may want to occassionally type `make Makefile' in any source
+# directory.
+# The `Makefile' target has been renamed to `reconfigure' so that the
+# autoconf and make depend processes do not start up automatically.
+# One must do `make reconfigure' explicitedly to start the process.
+# (When srcdir is used and if more than one machines are running,
+# this automatic Makefile/autoconf can get things unstable.)
+#
+#STAMP1=$(top_builddir)/config/stamp1
+#STAMP2=$(top_builddir)/config/stamp2
+
+#MAKEFILE_PARTS=$(srcdir)/Makefile.in \
+# $(top_srcdir)/config/commence.am \
+# $(top_srcdir)/config/conclude.am
+
+#$(STAMP1): $(top_srcdir)/configure.in
+# touch $(STAMP1)
+# -cd $(top_srcdir); autoheader
+
+#$(STAMP2): $(STAMP1) $(top_builddir)/config.status
+# touch $(STAMP2)
+# -cd $(top_builddir); \
+# CONFIG_FILES= CONFIG_HEADERS=src/H5config.h ./config.status
+
+# Automake supplies a rule to generate configure
+
+#$(top_builddir)/config.status: $(top_srcdir)/configure $(STAMP1)
+# -cd $(top_builddir); ./config.status --recheck
+
+# rerun the autoconf process if any configure components have changed.
+#reconfigure: $(MAKEFILE_PARTS) $(STAMP2)
+# -cd $(top_builddir); CONFIG_HEADERS= ./config.status
+# @for sub in @subdirs@ dummy; do \
+# if test $$sub != dummy; then \
+# -cd $$sub; $(MAKE) reconfigure; \
+# fi; \
+# done;
+
+#-----------------------------------------------------------------------------
+# The following section of this makefile comes from the middle of
+# `Makefile.am' from this directory.
+# It was generated by running automake on `Makefile.am' to create
+# `Makefile.in', then running `config.status' to create this Makefile.
+#-----------------------------------------------------------------------------
+
+# lib/progs/tests targets recurse into subdirectories. build-* targets
+# build files in this directory.
+build-lib: $(LIB)
+build-progs: $(LIB) $(PROGS)
+build-tests: $(LIB) $(PROGS) $(TESTS)
+
+lib progs tests ::
+ @$(MAKE) build-$@ || exit 1; \
+ for d in X $(SUBDIRS); do \
+ if test $$d != X -a $$d != .; then \
+ (set -x; cd $$d && $(MAKE) $@) || exit 1; \
+ fi; \
+ done
+
+# Tell Automake to build tests when the user types `make all' (this is
+# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
+# Automake won't build them automatically, either.
+all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(TESTS)
+
+# make install-doc doesn't do anything outside of doc directory, but
+# Makefiles should recognize it.
+install-doc uninstall-doc:
+ @echo "Nothing to be done."
+
+# Run each test in order, passing $(TEST_FLAGS) to the program.
+# Since tests are done in a shell loop, "make -i" does apply inside it.
+# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
+# The timestamps give a rough idea how much time the tests use.
+#
+# Note that targets in TESTS (defined above) will be built when the user
+# types 'make tests' or 'make check', but only programs in TEST_PROG,
+# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed.
+check-TESTS: test
-## h5c++ is generated during configure time. Remove it only when distclean.
-## libhdf5.settings is generated during configure. Remove it when distclean.
-DISTCLEAN=h5c++ libhdf5.settings
+test _test: $(PROGS) $(TESTS)
+ @if test -n "$(TEST_PROG)$(TEST_PROG_PARA)$(TEST_SCRIPT)"; then \
+ echo "===Tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \
+ fi
+ @for test in $(TEST_PROG) dummy; do \
+ if test $$test != dummy; then \
+ echo "============================"; \
+ if test "X$(HDF_FORTRAN)" = "Xyes"; then \
+ echo "Fortran API: Testing $$test $(TEST_FLAGS)"; \
+ elif test "X$(HDF_CXX)" = "Xyes"; then \
+ echo "C++ API: Testing $$test $(TEST_FLAGS)"; \
+ else \
+ echo "Testing $$test $(TEST_FLAGS)"; \
+ fi; \
+ echo "============================"; \
+ srcdir="$(srcdir)" \
+ $(RUNTEST) ./$$test $(TEST_FLAGS) || \
+ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \
+ break; \
+ echo ""; \
+ fi; \
+ done; \
+ test $$test = dummy || false
+ @if test -n "$(TEST_PROG_PARA)"; then \
+ echo "**** Hint ****"; \
+ echo "Parallel test files reside in the current directory" \
+ "by default."; \
+ echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \
+ echo " HDF5_PARAPREFIX=/PFS/user/me"; \
+ echo " export HDF5_PARAPREFIX"; \
+ echo " make check"; \
+ echo "**** end of Hint ****"; \
+ fi
+ @for test in $(TEST_PROG_PARA) dummy; do \
+ if test $$test != dummy; then \
+ echo "============================"; \
+ if test "X$(HDF_FORTRAN)" = "Xyes"; then \
+ echo "Fortran API: Testing $$test $(TEST_FLAGS)"; \
+ elif test "X$(HDF_CXX)" = "Xyes"; then \
+ echo "C++ API: Testing $$test $(TEST_FLAGS)"; \
+ else \
+ echo "Testing $$test $(TEST_FLAGS)"; \
+ fi; \
+ echo "============================"; \
+ srcdir="$(srcdir)" \
+ $(RUNPARALLEL) ./$$test $(TEST_FLAGS) || \
+ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \
+ break; \
+ echo ""; \
+ fi; \
+ done; \
+ test $$test = dummy || false
+ @for test in $(TEST_SCRIPT) dummy; do \
+ if test $$test != dummy; then \
+ echo "============================"; \
+ if test "X$(HDF_FORTRAN)" = "Xyes"; then \
+ echo "Fortran API: Testing $$test $(TEST_FLAGS)"; \
+ elif test "X$(HDF_CXX)" = "Xyes"; then \
+ echo "C++ API: Testing $$test $(TEST_FLAGS)"; \
+ else \
+ echo "Testing $$test $(TEST_FLAGS)"; \
+ fi; \
+ echo "============================"; \
+ RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \
+ srcdir="$(srcdir)" \
+ /bin/sh $$test $(TEST_FLAGS) || \
+ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \
+ break; \
+ echo ""; \
+ fi; \
+ done; \
+ test $$test = dummy || false
+ @if test -n "$(TEST_PROG)$(TEST_PROG_PARA)$(TEST_SCRIPT)"; then \
+ echo "===Tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\
+ fi
-@CONCLUDE@
+# Run test with different Virtual File Driver
+check-vfd:
+ @for vfd in $(VFD_LIST) dummy; do \
+ if test $$vfd != dummy; then \
+ echo "============================"; \
+ echo "Testing Virtual File Driver $$vfd"; \
+ echo "============================"; \
+ HDF5_DRIVER=$$vfd $(MAKE) check; \
+ fi; \
+ done
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
diff --git a/c++/test/Dependencies b/c++/test/Dependencies
deleted file mode 100644
index 3dd6889..0000000
--- a/c++/test/Dependencies
+++ /dev/null
@@ -1,336 +0,0 @@
-## This file is machine generated on GNU systems.
-## Only temporary changes may be made here.
-
-dsets.o: \
- ../../../hdf5/./c++/test/dsets.cpp \
- ../../../hdf5/c++/test/../src/H5Cpp.h \
- ../../../hdf5/c++/test/../src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/test/../src/H5Exception.h \
- ../../../hdf5/c++/test/../src/H5IdComponent.h \
- ../../../hdf5/c++/test/../src/H5DataSpace.h \
- ../../../hdf5/c++/test/../src/H5PropList.h \
- ../../../hdf5/c++/test/../src/H5Object.h \
- ../../../hdf5/c++/test/../src/H5Classes.h \
- ../../../hdf5/c++/test/../src/H5AbstractDs.h \
- ../../../hdf5/c++/test/../src/H5Attribute.h \
- ../../../hdf5/c++/test/../src/H5DataType.h \
- ../../../hdf5/c++/test/../src/H5DcreatProp.h \
- ../../../hdf5/c++/test/../src/H5DxferProp.h \
- ../../../hdf5/c++/test/../src/H5FaccProp.h \
- ../../../hdf5/c++/test/../src/H5FcreatProp.h \
- ../../../hdf5/c++/test/../src/H5AtomType.h \
- ../../../hdf5/c++/test/../src/H5PredType.h \
- ../../../hdf5/c++/test/../src/H5EnumType.h \
- ../../../hdf5/c++/test/../src/H5IntType.h \
- ../../../hdf5/c++/test/../src/H5FloatType.h \
- ../../../hdf5/c++/test/../src/H5StrType.h \
- ../../../hdf5/c++/test/../src/H5CompType.h \
- ../../../hdf5/c++/test/../src/H5DataSet.h \
- ../../../hdf5/c++/test/../src/H5CommonFG.h \
- ../../../hdf5/c++/test/../src/H5Group.h \
- ../../../hdf5/c++/test/../src/H5File.h \
- ../../../hdf5/c++/test/../src/H5Library.h \
- ../../../hdf5/test/h5test.h \
- ../../../hdf5/src/H5private.h \
- ../../../hdf5/src/H5MPprivate.h \
- ../../../hdf5/src/H5FSprivate.h \
- ../../../hdf5/test/testhdf5.h \
- ../../../hdf5/src/H5Eprivate.h \
- ../../../hdf5/c++/test/h5cpputil.h
-testhdf5.o: \
- ../../../hdf5/./c++/test/testhdf5.cpp \
- ../../../hdf5/test/testhdf5.h \
- ../../../hdf5/src/H5private.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5MPprivate.h \
- ../../../hdf5/src/H5FSprivate.h \
- ../../../hdf5/src/H5Eprivate.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/test/h5test.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/test/../src/H5Cpp.h \
- ../../../hdf5/c++/test/../src/H5Include.h \
- ../../../hdf5/c++/test/../src/H5Exception.h \
- ../../../hdf5/c++/test/../src/H5IdComponent.h \
- ../../../hdf5/c++/test/../src/H5DataSpace.h \
- ../../../hdf5/c++/test/../src/H5PropList.h \
- ../../../hdf5/c++/test/../src/H5Object.h \
- ../../../hdf5/c++/test/../src/H5Classes.h \
- ../../../hdf5/c++/test/../src/H5AbstractDs.h \
- ../../../hdf5/c++/test/../src/H5Attribute.h \
- ../../../hdf5/c++/test/../src/H5DataType.h \
- ../../../hdf5/c++/test/../src/H5DcreatProp.h \
- ../../../hdf5/c++/test/../src/H5DxferProp.h \
- ../../../hdf5/c++/test/../src/H5FaccProp.h \
- ../../../hdf5/c++/test/../src/H5FcreatProp.h \
- ../../../hdf5/c++/test/../src/H5AtomType.h \
- ../../../hdf5/c++/test/../src/H5PredType.h \
- ../../../hdf5/c++/test/../src/H5EnumType.h \
- ../../../hdf5/c++/test/../src/H5IntType.h \
- ../../../hdf5/c++/test/../src/H5FloatType.h \
- ../../../hdf5/c++/test/../src/H5StrType.h \
- ../../../hdf5/c++/test/../src/H5CompType.h \
- ../../../hdf5/c++/test/../src/H5DataSet.h \
- ../../../hdf5/c++/test/../src/H5CommonFG.h \
- ../../../hdf5/c++/test/../src/H5Group.h \
- ../../../hdf5/c++/test/../src/H5File.h \
- ../../../hdf5/c++/test/../src/H5Library.h
-tfile.o: \
- ../../../hdf5/./c++/test/tfile.cpp \
- ../../../hdf5/c++/test/../src/H5Cpp.h \
- ../../../hdf5/c++/test/../src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/test/../src/H5Exception.h \
- ../../../hdf5/c++/test/../src/H5IdComponent.h \
- ../../../hdf5/c++/test/../src/H5DataSpace.h \
- ../../../hdf5/c++/test/../src/H5PropList.h \
- ../../../hdf5/c++/test/../src/H5Object.h \
- ../../../hdf5/c++/test/../src/H5Classes.h \
- ../../../hdf5/c++/test/../src/H5AbstractDs.h \
- ../../../hdf5/c++/test/../src/H5Attribute.h \
- ../../../hdf5/c++/test/../src/H5DataType.h \
- ../../../hdf5/c++/test/../src/H5DcreatProp.h \
- ../../../hdf5/c++/test/../src/H5DxferProp.h \
- ../../../hdf5/c++/test/../src/H5FaccProp.h \
- ../../../hdf5/c++/test/../src/H5FcreatProp.h \
- ../../../hdf5/c++/test/../src/H5AtomType.h \
- ../../../hdf5/c++/test/../src/H5PredType.h \
- ../../../hdf5/c++/test/../src/H5EnumType.h \
- ../../../hdf5/c++/test/../src/H5IntType.h \
- ../../../hdf5/c++/test/../src/H5FloatType.h \
- ../../../hdf5/c++/test/../src/H5StrType.h \
- ../../../hdf5/c++/test/../src/H5CompType.h \
- ../../../hdf5/c++/test/../src/H5DataSet.h \
- ../../../hdf5/c++/test/../src/H5CommonFG.h \
- ../../../hdf5/c++/test/../src/H5Group.h \
- ../../../hdf5/c++/test/../src/H5File.h \
- ../../../hdf5/c++/test/../src/H5Library.h \
- ../../../hdf5/test/testhdf5.h \
- ../../../hdf5/src/H5private.h \
- ../../../hdf5/src/H5MPprivate.h \
- ../../../hdf5/src/H5FSprivate.h \
- ../../../hdf5/src/H5Eprivate.h \
- ../../../hdf5/test/h5test.h
-th5s.o: \
- ../../../hdf5/./c++/test/th5s.cpp \
- ../../../hdf5/c++/test/../src/H5Cpp.h \
- ../../../hdf5/c++/test/../src/H5Include.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/c++/test/../src/H5Exception.h \
- ../../../hdf5/c++/test/../src/H5IdComponent.h \
- ../../../hdf5/c++/test/../src/H5DataSpace.h \
- ../../../hdf5/c++/test/../src/H5PropList.h \
- ../../../hdf5/c++/test/../src/H5Object.h \
- ../../../hdf5/c++/test/../src/H5Classes.h \
- ../../../hdf5/c++/test/../src/H5AbstractDs.h \
- ../../../hdf5/c++/test/../src/H5Attribute.h \
- ../../../hdf5/c++/test/../src/H5DataType.h \
- ../../../hdf5/c++/test/../src/H5DcreatProp.h \
- ../../../hdf5/c++/test/../src/H5DxferProp.h \
- ../../../hdf5/c++/test/../src/H5FaccProp.h \
- ../../../hdf5/c++/test/../src/H5FcreatProp.h \
- ../../../hdf5/c++/test/../src/H5AtomType.h \
- ../../../hdf5/c++/test/../src/H5PredType.h \
- ../../../hdf5/c++/test/../src/H5EnumType.h \
- ../../../hdf5/c++/test/../src/H5IntType.h \
- ../../../hdf5/c++/test/../src/H5FloatType.h \
- ../../../hdf5/c++/test/../src/H5StrType.h \
- ../../../hdf5/c++/test/../src/H5CompType.h \
- ../../../hdf5/c++/test/../src/H5DataSet.h \
- ../../../hdf5/c++/test/../src/H5CommonFG.h \
- ../../../hdf5/c++/test/../src/H5Group.h \
- ../../../hdf5/c++/test/../src/H5File.h \
- ../../../hdf5/c++/test/../src/H5Library.h \
- ../../../hdf5/test/testhdf5.h \
- ../../../hdf5/src/H5private.h \
- ../../../hdf5/src/H5MPprivate.h \
- ../../../hdf5/src/H5FSprivate.h \
- ../../../hdf5/src/H5Eprivate.h \
- ../../../hdf5/test/h5test.h
-h5cpputil.o: \
- ../../../hdf5/./c++/test/h5cpputil.cpp \
- ../../../hdf5/c++/test/h5cpputil.h \
- ../../../hdf5/test/h5test.h \
- ../../../hdf5/src/hdf5.h \
- ../../../hdf5/src/H5public.h \
- ../../src/H5pubconf.h \
- ../../../hdf5/src/H5api_adpt.h \
- ../../../hdf5/src/H5Apublic.h \
- ../../../hdf5/src/H5Ipublic.h \
- ../../../hdf5/src/H5ACpublic.h \
- ../../../hdf5/src/H5Bpublic.h \
- ../../../hdf5/src/H5Dpublic.h \
- ../../../hdf5/src/H5Epublic.h \
- ../../../hdf5/src/H5Epubgen.h \
- ../../../hdf5/src/H5Fpublic.h \
- ../../../hdf5/src/H5FDpublic.h \
- ../../../hdf5/src/H5FPpublic.h \
- ../../../hdf5/src/H5Gpublic.h \
- ../../../hdf5/src/H5Opublic.h \
- ../../../hdf5/src/H5HGpublic.h \
- ../../../hdf5/src/H5HLpublic.h \
- ../../../hdf5/src/H5MMpublic.h \
- ../../../hdf5/src/H5Ppublic.h \
- ../../../hdf5/src/H5Tpublic.h \
- ../../../hdf5/src/H5Zpublic.h \
- ../../../hdf5/src/H5Rpublic.h \
- ../../../hdf5/src/H5Spublic.h \
- ../../../hdf5/src/H5FDcore.h \
- ../../../hdf5/src/H5FDfamily.h \
- ../../../hdf5/src/H5FDgass.h \
- ../../../hdf5/src/H5FDlog.h \
- ../../../hdf5/src/H5FDmpi.h \
- ../../../hdf5/src/H5FDfphdf5.h \
- ../../../hdf5/src/H5FDmpio.h \
- ../../../hdf5/src/H5FDmpiposix.h \
- ../../../hdf5/src/H5FDmulti.h \
- ../../../hdf5/src/H5FDsec2.h \
- ../../../hdf5/src/H5FDsrb.h \
- ../../../hdf5/src/H5FDstdio.h \
- ../../../hdf5/src/H5FDstream.h \
- ../../../hdf5/src/H5private.h \
- ../../../hdf5/src/H5MPprivate.h \
- ../../../hdf5/src/H5FSprivate.h
diff --git a/c++/test/Makefile.am b/c++/test/Makefile.am
new file mode 100644
index 0000000..2fec0bf
--- /dev/null
+++ b/c++/test/Makefile.am
@@ -0,0 +1,36 @@
+#
+# 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.
+##
+## Makefile.am
+## Run automake to generate a Makefile.in from this file.
+#
+# HDF5-C++ Makefile(.in)
+#
+
+include $(top_srcdir)/config/commence.am
+
+# Include src, test, and c++/src directories
+AM_CPPFLAGS=-I$(top_srcdir)/src -I$(top_srcdir)/test -I$(top_srcdir)/c++/src
+
+# These are our main targets. They should be listed in the order to be
+# executed, generally most specific tests to least specific tests.
+TEST_PROG=dsets testhdf5
+check_PROGRAMS=$(TEST_PROG)
+
+# The tests depend on the hdf5 library, test library, and the c++ library
+LDADD=$(LIBH5CPP) $(LIBH5TEST) $(LIBHDF5)
+
+dsets_SOURCES=dsets.cpp h5cpputil.cpp
+testhdf5_SOURCES=testhdf5.cpp tfile.cpp th5s.cpp h5cpputil.cpp
+
+include $(top_srcdir)/config/conclude.am
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in
index f70b871..20879e2 100644
--- a/c++/test/Makefile.in
+++ b/c++/test/Makefile.in
@@ -1,60 +1,682 @@
-##
-## 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++ test/Makefile(.in)
-##
-top_srcdir=@top_srcdir@
-top_builddir=../..
-srcdir=@srcdir@
-@COMMENCE@
-
-HDF_CXX="yes"
-
-hdf5_srcdir=$(top_srcdir)/src
-hdf5_builddir=$(top_builddir)/src
-hdf5_testdir=$(top_builddir)/test
-
-## Add include directory to the cpp preprocessor flags; note that the
-## hdf5/test directory is needed for the use of h5test
-CPPFLAGS=-I. -I../src -I$(srcdir)/../src -I$(top_srcdir)/test -I$(hdf5_builddir) -I$(hdf5_srcdir) @CPPFLAGS@
-
-## Add the C++ API library and the hdf5 library to the library lists
-LIB=../src/libhdf5_cpp.la
-LIBHDF5=$(hdf5_builddir)/libhdf5.la
-LIBH5TEST=$(hdf5_testdir)/libh5test.la
-
-## These are our main targets. They should be listed in the order to be
-## executed, generally most specific tests to least specific tests.
-RUNTEST=$(LT_RUN)
-
-TESTHDF5_SRC=testhdf5.cpp tfile.cpp th5s.cpp h5cpputil.cpp
-TESTHDF5_OBJ=$(TESTHDF5_SRC:.cpp=.lo)
-
-TEST_SRC=dsets.cpp $(TESTHDF5_SRC)
-TEST_OBJ=$(TEST_SRC:.cpp=.lo)
-TEST_PROGS=dsets testhdf5
-
-
-TEST_SCRIPTS=
-
-DISTCLEAN=$(TEST_PROGS_SRC:.cpp=.lo) $(TEST_PROGS_SRC:.cpp=.o)
-
-$(TEST_PROGS): $(LIB) $(LIBHDF5) $(LIBH5TEST)
-
-testhdf5: $(TEST_OBJ)
- @$(LT_LINK_CXX_EXE) $(CXXFLAGS) -o $@ $(TESTHDF5_OBJ) $(LIB) $(LIBH5TEST) $(LIBHDF5) $(LDFLAGS) $(LIBS) $(DEFAULT_LIBS)
-
-dsets: dsets.lo h5cpputil.lo
- @$(LT_LINK_CXX_EXE) $(CXXFLAGS) -o $@ dsets.lo h5cpputil.lo $(hdf5_builddir)/../test/h5test.lo $(LIB) $(LIBH5TEST) $(LIBHDF5) $(LDFLAGS) $(LIBS) $(DEFAULT_LIBS)
-
-@CONCLUDE@
+# Makefile.in generated by automake 1.6.3 from Makefile.am.
+# @configure_input@
+
+# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
+# Free Software Foundation, Inc.
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+
+#
+# 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++ Makefile(.in)
+#
+
+#------------------------------------------------------------ -*- makefile -*-
+# The following section of this makefile comes from the
+# `./config/commence' file which was generated with config.status
+# from `./config/commence.in'.
+#-----------------------------------------------------------------------------
+
+#------------------------------------------------------------ -*- makefile -*-
+# The following section of this makefile comes from the
+# `./config/conclude' file which was generated with config.status
+# from `./config/conclude.in'.
+#-----------------------------------------------------------------------------
+SHELL = @SHELL@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+sbindir = @sbindir@
+libexecdir = @libexecdir@
+datadir = @datadir@
+sysconfdir = @sysconfdir@
+sharedstatedir = @sharedstatedir@
+localstatedir = @localstatedir@
+libdir = @libdir@
+infodir = @infodir@
+mandir = @mandir@
+oldincludedir = /usr/include
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+top_builddir = ../..
+
+ACLOCAL = @ACLOCAL@
+AUTOCONF = @AUTOCONF@
+AUTOMAKE = @AUTOMAKE@
+AUTOHEADER = @AUTOHEADER@
+
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = @program_transform_name@
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+host_alias = @host_alias@
+host_triplet = @host@
+
+EXEEXT = @EXEEXT@
+OBJEXT = @OBJEXT@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+
+# Install directories that automake doesn't know about
+includedir = $(exec_prefix)/include
+ADD_PARALLEL_FILES = @ADD_PARALLEL_FILES@
+AMTAR = @AMTAR@
+AR = @AR@
+AS = @AS@
+AWK = @AWK@
+BUILD_PDB2HDF = @BUILD_PDB2HDF@
+BYTESEX = @BYTESEX@
+CC = @CC@
+CC_VERSION = @CC_VERSION@
+CONFIG_DATE = @CONFIG_DATE@
+CONFIG_MODE = @CONFIG_MODE@
+CONFIG_USER = @CONFIG_USER@
+CPPFLAGS = @CPPFLAGS@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+DEBUG_PKG = @DEBUG_PKG@
+DEFAULT_LIBS = @DEFAULT_LIBS@
+DEPDIR = @DEPDIR@
+DLLTOOL = @DLLTOOL@
+DYNAMIC_DIRS = @DYNAMIC_DIRS@
+ECHO = @ECHO@
+F77 = @F77@
+F9XSUFFIXFLAG = @F9XSUFFIXFLAG@
+FC = @FC@
+FFLAGS = @FFLAGS@
+FILTERS = @FILTERS@
+FSEARCH_DIRS = @FSEARCH_DIRS@
+GASS = @GASS@
+H5_VERSION = @H5_VERSION@
+HADDR_T = @HADDR_T@
+HDF5_INTERFACES = @HDF5_INTERFACES@
+HID_T = @HID_T@
+HL = @HL@
+HL_FOR = @HL_FOR@
+HSIZET = @HSIZET@
+HSIZE_T = @HSIZE_T@
+HSSIZE_T = @HSSIZE_T@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+INSTRUMENT_LIBRARY = @INSTRUMENT_LIBRARY@
+LIBTOOL = @LIBTOOL@
+LN_S = @LN_S@
+LT_STATIC_EXEC = @LT_STATIC_EXEC@
+MPE = @MPE@
+OBJDUMP = @OBJDUMP@
+OBJECT_NAMELEN_DEFAULT_F = @OBJECT_NAMELEN_DEFAULT_F@
+PACKAGE = @PACKAGE@
+PARALLEL = @PARALLEL@
+PERL = @PERL@
+PTHREAD = @PTHREAD@
+RANLIB = @RANLIB@
+ROOT = @ROOT@
+RUNPARALLEL = @RUNPARALLEL@
+RUNSERIAL = @RUNSERIAL@
+R_INTEGER = @R_INTEGER@
+R_LARGE = @R_LARGE@
+SEARCH = @SEARCH@
+SETX = @SETX@
+SIZE_T = @SIZE_T@
+SRB = @SRB@
+SSL = @SSL@
+STATIC_SHARED = @STATIC_SHARED@
+STRIP = @STRIP@
+TESTGASS = @TESTGASS@
+TESTPARALLEL = @TESTPARALLEL@
+TESTSRB = @TESTSRB@
+TRACE_API = @TRACE_API@
+USE_FILTER_DEFLATE = @USE_FILTER_DEFLATE@
+USE_FILTER_FLETCHER32 = @USE_FILTER_FLETCHER32@
+USE_FILTER_NBIT = @USE_FILTER_NBIT@
+USE_FILTER_SHUFFLE = @USE_FILTER_SHUFFLE@
+USE_FILTER_SZIP = @USE_FILTER_SZIP@
+VERSION = @VERSION@
+am__include = @am__include@
+am__quote = @am__quote@
+install_sh = @install_sh@
+
+# Shell commands used in Makefiles
+RM = rm -f
+CP = cp
+
+# Libraries to link to while building
+LIBHDF5 = $(top_builddir)/src/libhdf5.la
+LIBH5TEST = $(top_builddir)/test/libh5test.la
+LIBH5F = $(top_builddir)/fortran/src/libhdf5_fortran.la
+LIBH5FTEST = $(top_builddir)/fortran/test/libh5test_fortran.la
+LIBH5CPP = $(top_builddir)/c++/src/libhdf5_cpp.la
+LIBH5TOOLS = $(top_builddir)/tools/lib/libh5tools.la
+LIBH5_HL = $(top_builddir)/hl/src/libhdf5_hl.la
+LIBH5F_HL = $(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la
+docdir = $(exec_prefix)/doc
+
+# Scripts used to build examples
+H5CC = $(bindir)/h5cc
+H5CC_PP = $(bindir)/h5pcc
+H5FC = $(bindir)/h5fc
+H5FC_PP = $(bindir)/h5pfc
+
+# Make sure that these variables are exported to the Makefiles
+F9XMODEXT = @F9XMODEXT@
+
+# Include src, test, and c++/src directories
+AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/test -I$(top_srcdir)/c++/src
+
+# These are our main targets. They should be listed in the order to be
+# executed, generally most specific tests to least specific tests.
+TEST_PROG = dsets testhdf5
+check_PROGRAMS = $(TEST_PROG)
+
+# The tests depend on the hdf5 library, test library, and the c++ library
+LDADD = $(LIBH5CPP) $(LIBH5TEST) $(LIBHDF5)
+
+dsets_SOURCES = dsets.cpp h5cpputil.cpp
+testhdf5_SOURCES = testhdf5.cpp tfile.cpp th5s.cpp h5cpputil.cpp
+
+# Automake needs to be taught how to build lib, progs, and tests targets.
+# These will be filled in automatically for the most part (e.g.,
+# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and
+# EXTRA_TEST variables are supplied to allow the user to force targets to
+# be built at certain times.
+LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \
+ $(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB)
+
+PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \
+ $(EXTRA_PROG)
+
+TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST)
+subdir = c++/test
+mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs
+CONFIG_HEADER = $(top_builddir)/src/H5config.h
+CONFIG_CLEAN_FILES =
+check_PROGRAMS = dsets$(EXEEXT) testhdf5$(EXEEXT)
+am_dsets_OBJECTS = dsets.$(OBJEXT) h5cpputil.$(OBJEXT)
+dsets_OBJECTS = $(am_dsets_OBJECTS)
+dsets_LDADD = $(LDADD)
+dsets_DEPENDENCIES = $(top_builddir)/c++/src/libhdf5_cpp.la \
+ $(top_builddir)/test/libh5test.la \
+ $(top_builddir)/src/libhdf5.la
+dsets_LDFLAGS =
+am_testhdf5_OBJECTS = testhdf5.$(OBJEXT) tfile.$(OBJEXT) th5s.$(OBJEXT) \
+ h5cpputil.$(OBJEXT)
+testhdf5_OBJECTS = $(am_testhdf5_OBJECTS)
+testhdf5_LDADD = $(LDADD)
+testhdf5_DEPENDENCIES = $(top_builddir)/c++/src/libhdf5_cpp.la \
+ $(top_builddir)/test/libh5test.la \
+ $(top_builddir)/src/libhdf5.la
+testhdf5_LDFLAGS =
+
+DEFS = @DEFS@
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src
+LDFLAGS = @LDFLAGS@
+LIBS = @LIBS@
+depcomp = $(SHELL) $(top_srcdir)/bin/depcomp
+am__depfiles_maybe = depfiles
+@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/dsets.Po ./$(DEPDIR)/h5cpputil.Po \
+@AMDEP_TRUE@ ./$(DEPDIR)/testhdf5.Po ./$(DEPDIR)/tfile.Po \
+@AMDEP_TRUE@ ./$(DEPDIR)/th5s.Po
+CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
+LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
+ $(AM_CXXFLAGS) $(CXXFLAGS)
+CXXLD = $(CXX)
+CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
+CXXFLAGS = @CXXFLAGS@
+DIST_SOURCES = $(dsets_SOURCES) $(testhdf5_SOURCES)
+DIST_COMMON = Makefile.am Makefile.in
+SOURCES = $(dsets_SOURCES) $(testhdf5_SOURCES)
+
+all: all-am
+
+.SUFFIXES:
+.SUFFIXES: .cpp .lo .o .obj
+$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
+ cd $(top_srcdir) && \
+ $(AUTOMAKE) --foreign c++/test/Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+
+clean-checkPROGRAMS:
+ @list='$(check_PROGRAMS)'; for p in $$list; do \
+ f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+ echo " rm -f $$p $$f"; \
+ rm -f $$p $$f ; \
+ done
+dsets$(EXEEXT): $(dsets_OBJECTS) $(dsets_DEPENDENCIES)
+ @rm -f dsets$(EXEEXT)
+ $(CXXLINK) $(dsets_LDFLAGS) $(dsets_OBJECTS) $(dsets_LDADD) $(LIBS)
+testhdf5$(EXEEXT): $(testhdf5_OBJECTS) $(testhdf5_DEPENDENCIES)
+ @rm -f testhdf5$(EXEEXT)
+ $(CXXLINK) $(testhdf5_LDFLAGS) $(testhdf5_OBJECTS) $(testhdf5_LDADD) $(LIBS)
+
+mostlyclean-compile:
+ -rm -f *.$(OBJEXT) core *.core
+
+distclean-compile:
+ -rm -f *.tab.c
+
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dsets.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h5cpputil.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testhdf5.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tfile.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/th5s.Po@am__quote@
+
+distclean-depend:
+ -rm -rf ./$(DEPDIR)
+
+.cpp.o:
+@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ $(CXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
+
+.cpp.obj:
+@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ $(CXXCOMPILE) -c -o $@ `cygpath -w $<`
+
+.cpp.lo:
+@AMDEP_TRUE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@
+@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ $(LTCXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
+CXXDEPMODE = @CXXDEPMODE@
+
+mostlyclean-libtool:
+ -rm -f *.lo
+
+clean-libtool:
+ -rm -rf .libs _libs
+
+distclean-libtool:
+ -rm -f libtool
+uninstall-info-am:
+
+ETAGS = etags
+ETAGSFLAGS =
+
+tags: TAGS
+
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | \
+ $(AWK) ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ mkid -fID $$unique
+
+TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
+ $(TAGS_FILES) $(LISP)
+ tags=; \
+ here=`pwd`; \
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | \
+ $(AWK) ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ test -z "$(ETAGS_ARGS)$$tags$$unique" \
+ || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+ $$tags $$unique
+
+GTAGS:
+ here=`$(am__cd) $(top_builddir) && pwd` \
+ && cd $(top_srcdir) \
+ && gtags -i $(GTAGS_ARGS) $$here
+
+distclean-tags:
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+
+top_distdir = ../..
+distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+
+distdir: $(DISTFILES)
+ @list='$(DISTFILES)'; for file in $$list; do \
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+ if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+ dir="/$$dir"; \
+ $(mkinstalldirs) "$(distdir)$$dir"; \
+ else \
+ dir=''; \
+ fi; \
+ if test -d $$d/$$file; then \
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+ fi; \
+ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+ else \
+ test -f $(distdir)/$$file \
+ || cp -p $$d/$$file $(distdir)/$$file \
+ || exit 1; \
+ fi; \
+ done
+check-am: all-am
+ $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
+ $(MAKE) $(AM_MAKEFLAGS) check-TESTS
+check: check-am
+all-am: Makefile all-local
+
+installdirs:
+
+install: install-am
+install-exec: install-exec-am
+install-data: install-data-am
+uninstall: uninstall-am
+
+install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-am
+install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ INSTALL_STRIP_FLAG=-s \
+ `test -z '$(STRIP)' || \
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+ -rm -f Makefile $(CONFIG_CLEAN_FILES)
+
+maintainer-clean-generic:
+ @echo "This command is intended for maintainers to use"
+ @echo "it deletes files that may require special tools to rebuild."
+clean: clean-am
+
+clean-am: clean-checkPROGRAMS clean-generic clean-libtool mostlyclean-am
+
+distclean: distclean-am
+
+distclean-am: clean-am distclean-compile distclean-depend \
+ distclean-generic distclean-libtool distclean-tags
+
+dvi: dvi-am
+
+dvi-am:
+
+info: info-am
+
+info-am:
+
+install-data-am:
+
+install-exec-am:
+
+install-info: install-info-am
+
+install-man:
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-am
+
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-am
+
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
+ mostlyclean-libtool
+
+uninstall-am: uninstall-info-am
+
+.PHONY: GTAGS all all-am all-local check check-TESTS check-am clean \
+ clean-checkPROGRAMS clean-generic clean-libtool distclean \
+ distclean-compile distclean-depend distclean-generic \
+ distclean-libtool distclean-tags distdir dvi dvi-am info \
+ info-am install install-am install-data install-data-am \
+ install-exec install-exec-am install-info install-info-am \
+ install-man install-strip installcheck installcheck-am \
+ installdirs maintainer-clean maintainer-clean-generic \
+ mostlyclean mostlyclean-compile mostlyclean-generic \
+ mostlyclean-libtool tags uninstall uninstall-am \
+ uninstall-info-am
+
+
+# Let automake worry about Makefiles and configure components being up-to-
+# date.
+#
+#
+# The following rules insure that the Makefile is up-to-date by rerunning
+# various autoconf components (although not all versions of make assume
+# that the makefile is implicitly a target). We use time stamp files to
+# keep track of the most recent update of H5config.h.in and H5config.h
+# because autoheader and config.status don't update the modification time
+# if the contents don't change.
+# Invoke it by "gmake reconfigure".
+#
+# Graphically, the dependencies are:
+#
+# configure.in
+# | |
+# +-----------------+ +------------+
+# | |
+# stamp1 configure
+# (H5config.h.in) |
+# | | |
+# | +---------------+ +-----------+
+# | | |
+# | config.status
+# | |
+# | +------------------+
+# | |
+# stamp2
+# (H5config.h) Makefile.in et al
+# | |
+# +------------------+ +-----------+
+# | |
+# Makefile
+#
+# A side effect of updating stamp1 is to generate H5config.h.in and a
+# side effect of updating stamp2 is to generate H5config.h. When using
+# a version of make that doesn't treat the makefile as the initial target
+# the user may want to occassionally type `make Makefile' in any source
+# directory.
+# The `Makefile' target has been renamed to `reconfigure' so that the
+# autoconf and make depend processes do not start up automatically.
+# One must do `make reconfigure' explicitedly to start the process.
+# (When srcdir is used and if more than one machines are running,
+# this automatic Makefile/autoconf can get things unstable.)
+#
+#STAMP1=$(top_builddir)/config/stamp1
+#STAMP2=$(top_builddir)/config/stamp2
+
+#MAKEFILE_PARTS=$(srcdir)/Makefile.in \
+# $(top_srcdir)/config/commence.am \
+# $(top_srcdir)/config/conclude.am
+
+#$(STAMP1): $(top_srcdir)/configure.in
+# touch $(STAMP1)
+# -cd $(top_srcdir); autoheader
+
+#$(STAMP2): $(STAMP1) $(top_builddir)/config.status
+# touch $(STAMP2)
+# -cd $(top_builddir); \
+# CONFIG_FILES= CONFIG_HEADERS=src/H5config.h ./config.status
+
+# Automake supplies a rule to generate configure
+
+#$(top_builddir)/config.status: $(top_srcdir)/configure $(STAMP1)
+# -cd $(top_builddir); ./config.status --recheck
+
+# rerun the autoconf process if any configure components have changed.
+#reconfigure: $(MAKEFILE_PARTS) $(STAMP2)
+# -cd $(top_builddir); CONFIG_HEADERS= ./config.status
+# @for sub in @subdirs@ dummy; do \
+# if test $$sub != dummy; then \
+# -cd $$sub; $(MAKE) reconfigure; \
+# fi; \
+# done;
+
+#-----------------------------------------------------------------------------
+# The following section of this makefile comes from the middle of
+# `Makefile.am' from this directory.
+# It was generated by running automake on `Makefile.am' to create
+# `Makefile.in', then running `config.status' to create this Makefile.
+#-----------------------------------------------------------------------------
+
+# lib/progs/tests targets recurse into subdirectories. build-* targets
+# build files in this directory.
+build-lib: $(LIB)
+build-progs: $(LIB) $(PROGS)
+build-tests: $(LIB) $(PROGS) $(TESTS)
+
+lib progs tests ::
+ @$(MAKE) build-$@ || exit 1; \
+ for d in X $(SUBDIRS); do \
+ if test $$d != X -a $$d != .; then \
+ (set -x; cd $$d && $(MAKE) $@) || exit 1; \
+ fi; \
+ done
+
+# Tell Automake to build tests when the user types `make all' (this is
+# not its default behavior). Also build EXTRA_LIB and EXTRA_PROG since
+# Automake won't build them automatically, either.
+all-local: $(EXTRA_LIB) $(EXTRA_PROG) $(TESTS)
+
+# make install-doc doesn't do anything outside of doc directory, but
+# Makefiles should recognize it.
+install-doc uninstall-doc:
+ @echo "Nothing to be done."
+
+# Run each test in order, passing $(TEST_FLAGS) to the program.
+# Since tests are done in a shell loop, "make -i" does apply inside it.
+# Set HDF5_Make_Ignore to a non-blank string to ignore errors inside the loop.
+# The timestamps give a rough idea how much time the tests use.
+#
+# Note that targets in TESTS (defined above) will be built when the user
+# types 'make tests' or 'make check', but only programs in TEST_PROG,
+# TEST_PROG_PARA, or TEST_SCRIPT will actually be executed.
+check-TESTS: test
+
+test _test: $(PROGS) $(TESTS)
+ @if test -n "$(TEST_PROG)$(TEST_PROG_PARA)$(TEST_SCRIPT)"; then \
+ echo "===Tests in `echo ${PWD} | sed -e s:.*/::` begin `date`==="; \
+ fi
+ @for test in $(TEST_PROG) dummy; do \
+ if test $$test != dummy; then \
+ echo "============================"; \
+ if test "X$(HDF_FORTRAN)" = "Xyes"; then \
+ echo "Fortran API: Testing $$test $(TEST_FLAGS)"; \
+ elif test "X$(HDF_CXX)" = "Xyes"; then \
+ echo "C++ API: Testing $$test $(TEST_FLAGS)"; \
+ else \
+ echo "Testing $$test $(TEST_FLAGS)"; \
+ fi; \
+ echo "============================"; \
+ srcdir="$(srcdir)" \
+ $(RUNTEST) ./$$test $(TEST_FLAGS) || \
+ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \
+ break; \
+ echo ""; \
+ fi; \
+ done; \
+ test $$test = dummy || false
+ @if test -n "$(TEST_PROG_PARA)"; then \
+ echo "**** Hint ****"; \
+ echo "Parallel test files reside in the current directory" \
+ "by default."; \
+ echo "Set HDF5_PARAPREFIX to use another directory. E.g.,"; \
+ echo " HDF5_PARAPREFIX=/PFS/user/me"; \
+ echo " export HDF5_PARAPREFIX"; \
+ echo " make check"; \
+ echo "**** end of Hint ****"; \
+ fi
+ @for test in $(TEST_PROG_PARA) dummy; do \
+ if test $$test != dummy; then \
+ echo "============================"; \
+ if test "X$(HDF_FORTRAN)" = "Xyes"; then \
+ echo "Fortran API: Testing $$test $(TEST_FLAGS)"; \
+ elif test "X$(HDF_CXX)" = "Xyes"; then \
+ echo "C++ API: Testing $$test $(TEST_FLAGS)"; \
+ else \
+ echo "Testing $$test $(TEST_FLAGS)"; \
+ fi; \
+ echo "============================"; \
+ srcdir="$(srcdir)" \
+ $(RUNPARALLEL) ./$$test $(TEST_FLAGS) || \
+ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \
+ break; \
+ echo ""; \
+ fi; \
+ done; \
+ test $$test = dummy || false
+ @for test in $(TEST_SCRIPT) dummy; do \
+ if test $$test != dummy; then \
+ echo "============================"; \
+ if test "X$(HDF_FORTRAN)" = "Xyes"; then \
+ echo "Fortran API: Testing $$test $(TEST_FLAGS)"; \
+ elif test "X$(HDF_CXX)" = "Xyes"; then \
+ echo "C++ API: Testing $$test $(TEST_FLAGS)"; \
+ else \
+ echo "Testing $$test $(TEST_FLAGS)"; \
+ fi; \
+ echo "============================"; \
+ RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \
+ srcdir="$(srcdir)" \
+ /bin/sh $$test $(TEST_FLAGS) || \
+ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \
+ break; \
+ echo ""; \
+ fi; \
+ done; \
+ test $$test = dummy || false
+ @if test -n "$(TEST_PROG)$(TEST_PROG_PARA)$(TEST_SCRIPT)"; then \
+ echo "===Tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\
+ fi
+
+# Run test with different Virtual File Driver
+check-vfd:
+ @for vfd in $(VFD_LIST) dummy; do \
+ if test $$vfd != dummy; then \
+ echo "============================"; \
+ echo "Testing Virtual File Driver $$vfd"; \
+ echo "============================"; \
+ HDF5_DRIVER=$$vfd $(MAKE) check; \
+ fi; \
+ done
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT: