2005-02-01 11:20:11 +08:00
|
|
|
#
|
2007-02-08 06:28:58 +08:00
|
|
|
# Copyright by The HDF Group.
|
2005-10-12 00:55:29 +08:00
|
|
|
# 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
|
2017-04-18 03:32:16 +08:00
|
|
|
# the COPYING file, which can be found at the root of the source code
|
|
|
|
# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.
|
|
|
|
# If you do not have access to either file, you may request a copy from
|
|
|
|
# help@hdfgroup.org.
|
2005-02-01 11:20:11 +08:00
|
|
|
#
|
|
|
|
##
|
|
|
|
## Makefile.am
|
|
|
|
## Run automake to generate a Makefile.in from this file.
|
|
|
|
##
|
|
|
|
#
|
|
|
|
# HDF5 High-Level Fortran Makefile(.in)
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/commence.am
|
|
|
|
|
[svn-r17616] Purpose:
CFLAGS overhaul
Description:
Modified the way configure handles CFLAGS.
(note: all changes also apply to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS).
1. The configure process will now always preserve a user's CFLAGS
environment variable setup. Any additional flags necessary for compilation
added at configure time will be passed into the Makefiles as AM_CFLAGS,
which is an automake construct to be used in addition to CFLAGS.
This will allow a user to have the final say, as CFLAGS will always appear
later in the compile line than AM_CFLAGS. Additionally, setting CFLAGS
during make will no longer completely erase all flags set by configure,
since they're maintained in AM_CFLAGS.
2. Additionally, where possible, flags previously being assigned directly
into CFLAGS (and thus propagating into h5cc) have now been redirected into
H5_CFLAGS, so they're used ONLY for compiling hdf5, and not embedded into
the h5cc wrapper script as well.
*Note that H5_CFLAGS ultimately is assigned into AM_CFLAGS for use in the
Makefiles. Complete description of changes and build process will be
included in a Configure Document that Elena and I are working on.
3. Removed unsupported config files. This includes:
config/dec-osf*
config/hpux11.00
config/irix5.x
config/powerpc-ibm-aix4.x
config/rs6000-ibm-aix5.x
config/unicos*
4. Modified configure summary to display additional values. Specifically,
appropriate AM_* variables are being shown, as well as H5_FCFLAGS and
H5_CXXFLAGS, which were for some reason not already present.
Tested:
- H5committest
- Tested on all THG / NCSA machines, using several combinations of the more
prominent configure options (c++, fortran, szip, threadsafe, parallel,
et cetera). (Thanks to Quincey for rysnc testing setup!)
- With regards to new automated testing, anything *necessary* for
compilation will be caught by the daily tests as it stands now. (i.e.,
if LDFLAGS is not properly set when szip is used, linking will fail).
Additionally, with regards to which flags get into h5cc, if any
*necessary* flags have been improperly removed, then daily tests should
fail during make installcheck. Additional machine-specific desired
behaviors and/or checks may have to be set up separately within the
daily tests, so this is something to work on.
2009-10-08 23:17:30 +08:00
|
|
|
AM_CPPFLAGS+=-I$(top_srcdir)/src -I$(top_builddir)/src -I$(top_srcdir)/hl/src
|
2016-07-07 21:36:50 +08:00
|
|
|
AM_FCFLAGS+=-I$(top_builddir)/fortran/src -I$(top_builddir)/hl/fortran/src -I$(top_builddir)/fortran/test $(F9XMODFLAG)$(top_builddir)/fortran/src $(F9XMODFLAG)$(top_builddir)/fortran/test $(F9XMODFLAG)$(top_builddir)/hl/fortran/src
|
2005-02-01 11:20:11 +08:00
|
|
|
|
2005-09-16 05:30:06 +08:00
|
|
|
# Some Fortran compilers can't build shared libraries, so sometimes we
|
|
|
|
# need to make sure the Fortran programs link against the static version
|
|
|
|
# of the HDF5 library. We do this by passing the -static flag to the linker.
|
|
|
|
if FORTRAN_SHARED_CONDITIONAL
|
|
|
|
else
|
[svn-r17616] Purpose:
CFLAGS overhaul
Description:
Modified the way configure handles CFLAGS.
(note: all changes also apply to FCFLAGS, CXXFLAGS, CPPFLAGS, and LDFLAGS).
1. The configure process will now always preserve a user's CFLAGS
environment variable setup. Any additional flags necessary for compilation
added at configure time will be passed into the Makefiles as AM_CFLAGS,
which is an automake construct to be used in addition to CFLAGS.
This will allow a user to have the final say, as CFLAGS will always appear
later in the compile line than AM_CFLAGS. Additionally, setting CFLAGS
during make will no longer completely erase all flags set by configure,
since they're maintained in AM_CFLAGS.
2. Additionally, where possible, flags previously being assigned directly
into CFLAGS (and thus propagating into h5cc) have now been redirected into
H5_CFLAGS, so they're used ONLY for compiling hdf5, and not embedded into
the h5cc wrapper script as well.
*Note that H5_CFLAGS ultimately is assigned into AM_CFLAGS for use in the
Makefiles. Complete description of changes and build process will be
included in a Configure Document that Elena and I are working on.
3. Removed unsupported config files. This includes:
config/dec-osf*
config/hpux11.00
config/irix5.x
config/powerpc-ibm-aix4.x
config/rs6000-ibm-aix5.x
config/unicos*
4. Modified configure summary to display additional values. Specifically,
appropriate AM_* variables are being shown, as well as H5_FCFLAGS and
H5_CXXFLAGS, which were for some reason not already present.
Tested:
- H5committest
- Tested on all THG / NCSA machines, using several combinations of the more
prominent configure options (c++, fortran, szip, threadsafe, parallel,
et cetera). (Thanks to Quincey for rysnc testing setup!)
- With regards to new automated testing, anything *necessary* for
compilation will be caught by the daily tests as it stands now. (i.e.,
if LDFLAGS is not properly set when szip is used, linking will fail).
Additionally, with regards to which flags get into h5cc, if any
*necessary* flags have been improperly removed, then daily tests should
fail during make installcheck. Additional machine-specific desired
behaviors and/or checks may have to be set up separately within the
daily tests, so this is something to work on.
2009-10-08 23:17:30 +08:00
|
|
|
AM_LDFLAGS+=-static
|
2005-09-16 05:30:06 +08:00
|
|
|
endif
|
|
|
|
|
2005-02-01 11:20:11 +08:00
|
|
|
# Our main target, the test programs
|
2011-06-10 11:42:34 +08:00
|
|
|
TEST_PROG=tstds tstlite tstimage tsttable
|
2005-02-01 11:20:11 +08:00
|
|
|
check_PROGRAMS=$(TEST_PROG)
|
|
|
|
|
2016-07-07 21:36:50 +08:00
|
|
|
LIBOBJS=$(top_builddir)/fortran/test/tf_gen.o
|
|
|
|
|
|
|
|
LDADD=$(LIBOBJS) $(LIBH5F_HL) $(LIBH5F) $(LIBH5_HL) $(LIBHDF5)
|
2005-02-01 11:20:11 +08:00
|
|
|
|
|
|
|
# Source files for the programs
|
2015-08-11 22:35:30 +08:00
|
|
|
tstds_SOURCES=tstds.F90
|
|
|
|
tstlite_SOURCES=tstlite.F90
|
|
|
|
tstimage_SOURCES=tstimage.F90
|
|
|
|
tsttable_SOURCES=tsttable.F90
|
2005-02-01 11:20:11 +08:00
|
|
|
|
2005-02-11 05:24:22 +08:00
|
|
|
# Temporary files.
|
2016-04-07 02:07:17 +08:00
|
|
|
CHECK_CLEANFILES+=dsetf[1-5].h5 f1img.h5 f[1-2]tab.h5 tstds.h5
|
2005-02-11 05:24:22 +08:00
|
|
|
|
2016-07-07 21:36:50 +08:00
|
|
|
# Fortran module files can have different extensions and different names
|
|
|
|
# (e.g., different capitalizations) on different platforms. Write rules
|
|
|
|
# for them explicitly rather than trying to teach automake about them.
|
|
|
|
# They should be installed as headers and removed during clean.
|
|
|
|
maintainer-clean-local: clean-local
|
|
|
|
distclean-local: clean-local
|
|
|
|
clean-local:
|
|
|
|
@if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \
|
|
|
|
$(RM) *.$(F9XMODEXT); \
|
|
|
|
fi
|
|
|
|
|
2008-05-19 13:06:51 +08:00
|
|
|
# Mark this directory as part of the Fortran API (this affects output
|
|
|
|
# from tests in conclude.am)
|
|
|
|
FORTRAN_API=yes
|
|
|
|
|
2015-08-21 00:01:26 +08:00
|
|
|
include $(top_srcdir)/config/conclude_fc.am
|