# # Copyright by The HDF Group. # 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://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have # access to either file, you may request a copy from help@hdfgroup.org. ## ## Makefile.am ## Run automake to generate a Makefile.in from this file. ## noinst_PROGRAMS = h5ex_g_compact h5ex_g_create \ h5ex_g_corder h5ex_g_phase if FORTRAN_2003_CONDITIONAL_F noinst_PROGRAMS += h5ex_g_iterate_F03 h5ex_g_visit_F03 if FORTRAN_2003_NOTINTEL_CONDITIONAL_F noinst_PROGRAMS += h5ex_g_traverse_F03 endif endif h5ex_g_compact_SOURCES = h5ex_g_compact.f90 h5ex_g_create_SOURCES = h5ex_g_create.f90 h5ex_g_corder_SOURCES = h5ex_g_corder.f90 h5ex_g_phase_SOURCES = h5ex_g_phase.f90 if FORTRAN_2003_CONDITIONAL_F h5ex_g_iterate_F03_SOURCES = h5ex_g_iterate_F03.f90 h5ex_g_visit_F03_SOURCES = h5ex_g_visit_F03.f90 # Intel 12.0 doesn't work with RECURSIVE; example should be skipped. EIP -2011/10/14 if FORTRAN_2003_NOTINTEL_CONDITIONAL_F h5ex_g_traverse_F03_SOURCES = h5ex_g_traverse_F03.f90 endif endif EXTRA_DIST = testfiles/h5ex_g_create.ddl \ testfiles/h5ex_g_compact1.ddl testfiles/h5ex_g_compact2.ddl testfiles/h5ex_g_corder.tst \ testfiles/h5ex_g_phase.tst \ test.sh if FORTRAN_2003_CONDITIONAL_F EXTRA_DIST += testfiles/h5ex_g_iterate_F03.tst testfiles/h5ex_g_iterate_F03.dll \ testfiles/h5ex_d_rdwr_kind_F03.tst testfiles/h5ex_d_rdwr_kind_F03.dll \ h5ex_g_iterate.h5 h5ex_g_visit.h5 endif TESTS = test.sh