summaryrefslogtreecommitdiffstats
path: root/fortran/src/Makefile.in
blob: 83dc6b8ab86de28418ef69db8f6344596ca14f23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
##
## 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 Fortran Library Makefile(.in)
##
top_srcdir=@top_srcdir@
top_builddir=../..
srcdir=@srcdir@
@COMMENCE@

HDF_FORTRAN="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) -I$(srcdir) @CPPFLAGS@

## This is our main target
LIB=libhdf5_fortran.la

## h5fc and libhdf5_fortran.settings are generated during configure. 
## Remove them only when distclean.
DISTCLEAN=H5fortran_types.f90 h5fc libhdf5_fortran.settings

## Public header files (to be installed)...
PUB_HDR=
PUB_PROGS=h5fc

## Source and object files for the library
ADD_PARALLEL_FILES=@ADD_PARALLEL_FILES@

FPAR_MOD=${ADD_PARALLEL_FILES:yes=HDF5mpio.f90}

CPARALLEL=${ADD_PARALLEL_FILES:yes=H5FDmpiof.c}
CLIB_SRC=H5f90kit.c H5_f.c H5Af.c H5Df.c H5Ef.c H5Ff.c H5Gf.c \
         H5If.c H5Pf.c H5Rf.c H5Sf.c H5Tf.c H5Zf.c ${CPARALLEL:no=}

FPARALLEL=${ADD_PARALLEL_FILES:yes=H5FDmpioff.f90}
FLIB_SRC=H5fortran_flags.f90 H5f90global.f90 H5fortran_types.f90 H5_ff.f90	\
         H5Aff.f90 H5Dff.f90 H5Eff.f90 H5Fff.f90 H5Gff.f90 H5Iff.f90 H5Pff.f90	\
         H5Rff.f90 H5Sff.f90 H5Tff.f90 H5Zff.f90 ${FPARALLEL:no=} ${FPAR_MOD:no=HDF5.f90}

LIB_SRC=$(CLIB_SRC) $(FLIB_SRC)
LIB_OBJ=$(CLIB_SRC:.c=.lo) $(FLIB_SRC:.f90=.lo)

## Hardcode the dependencies of these files. There isn't a known way of
## determining this automagically (like we do with the C files). So, when
## doing a parallel make, some modules could be made way before the
## modules they depend upon are actually made. *sigh*
H5fortran_flags.lo: $(srcdir)/H5fortran_flags.f90
H5f90global.lo:	    $(srcdir)/H5f90global.f90 H5fortran_flags.lo H5fortran_types.lo
H5fortran_types.lo: H5fortran_types.f90
H5_ff.lo:	    $(srcdir)/H5_ff.f90 H5f90global.lo
H5Aff.lo:	    $(srcdir)/H5Aff.f90 H5f90global.lo
H5Dff.lo:	    $(srcdir)/H5Dff.f90 H5f90global.lo
H5Eff.lo:	    $(srcdir)/H5Eff.f90 H5f90global.lo
H5Fff.lo:	    $(srcdir)/H5Fff.f90 H5f90global.lo
H5Gff.lo:	    $(srcdir)/H5Gff.f90 H5f90global.lo
H5Iff.lo:	    $(srcdir)/H5Iff.f90 H5f90global.lo
H5Pff.lo:	    $(srcdir)/H5Pff.f90 H5f90global.lo
H5Rff.lo:	    $(srcdir)/H5Rff.f90 H5f90global.lo
H5Sff.lo:	    $(srcdir)/H5Sff.f90 H5f90global.lo
H5Tff.lo:	    $(srcdir)/H5Tff.f90 H5f90global.lo
H5Zff.lo:	    $(srcdir)/H5Zff.f90 H5f90global.lo
HDF5.lo:	    $(srcdir)/HDF5.f90 H5f90global.lo H5Aff.lo	    \
		    H5Dff.lo H5Eff.lo H5Fff.lo H5Gff.lo H5Iff.lo    \
		    H5Pff.lo H5Rff.lo H5Sff.lo H5Tff.lo H5Zff.lo
H5FDmpioff.lo:	    $(srcdir)/H5FDmpioff.f90 H5f90global.lo
HDF5mpio.lo:	    $(srcdir)/H5FDmpioff.f90 H5f90global.lo H5Aff.lo  \
		    H5Dff.lo H5Eff.lo H5Fff.lo H5Gff.lo H5Iff.lo    \
		    H5Pff.lo H5Rff.lo H5Sff.lo H5Tff.lo H5Zff.lo H5FDmpioff.lo

ARFLAGS=rc

@CONCLUDE@