mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-04-12 17:31:09 +08:00
[svn-r27537] Added new FCCPPFLAGS to avoid passing CPPFLAGS to the fortran pre-processor compiler (This mainly causes issues with the xlf compilers)
Tested: h5committest
This commit is contained in:
parent
8db36cc766
commit
1436a07905
1
MANIFEST
1
MANIFEST
@ -93,6 +93,7 @@
|
||||
./config/cce-flags
|
||||
./config/commence.am
|
||||
./config/conclude.am
|
||||
./config/conclude_fc.am
|
||||
./config/examples.am
|
||||
./config/freebsd
|
||||
./config/gnu-fflags
|
||||
|
33
config/conclude_fc.am
Normal file
33
config/conclude_fc.am
Normal file
@ -0,0 +1,33 @@
|
||||
## config/conclude_fc.am
|
||||
## (Use double hashes for copyright notice so that automake treats it as
|
||||
## comments and does not pass it to Makefile.in)
|
||||
## 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.
|
||||
|
||||
|
||||
## Textually included at the end of the Fortran HDF5 Makefiles.am.
|
||||
|
||||
# Makefile.am include fragment with Fortran helper rules and macros.
|
||||
|
||||
# AM_FCCPPFLAGS, FCCPPFLAGS are currently not used.
|
||||
|
||||
PPFCCOMPILE = $(FC) $(FCDEFS) $(DEFAULT_INCLUDES) $(FCINCLUDES) $(AM_FCCPPFLAGS) $(FCCPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)
|
||||
LTPPFCCOMPILE = $(LIBTOOL) --tag=FC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(PPFCCOMPILE)
|
||||
|
||||
# Treat all .f90 and .F90 files as preprocessed Fortran.
|
||||
.f90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
.F90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
|
||||
include $(top_srcdir)/config/conclude.am
|
@ -107,4 +107,4 @@ compound_fortran2003: compound_fortran2003.f90
|
||||
compound_complex_fortran2003: compound_complex_fortran2003.f90
|
||||
|
||||
include $(top_srcdir)/config/examples.am
|
||||
include $(top_srcdir)/config/conclude.am
|
||||
include $(top_srcdir)/config/conclude_fc.am
|
||||
|
@ -34,6 +34,10 @@
|
||||
# We can't tell automake about example programs, because they need to be
|
||||
# built using h5cc (or h5fc, etc.) instead of the standard compilers.
|
||||
# This creates some extra work for us.
|
||||
|
||||
# Makefile.am include fragment with Fortran helper rules and macros.
|
||||
|
||||
# AM_FCCPPFLAGS, FCCPPFLAGS are currently not used.
|
||||
VPATH = @srcdir@
|
||||
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
||||
am__make_running_with_option = \
|
||||
@ -100,6 +104,7 @@ build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
DIST_COMMON = $(top_srcdir)/config/commence.am \
|
||||
$(top_srcdir)/config/examples.am \
|
||||
$(top_srcdir)/config/conclude_fc.am \
|
||||
$(top_srcdir)/config/conclude.am $(srcdir)/Makefile.in \
|
||||
$(srcdir)/Makefile.am $(top_srcdir)/bin/mkinstalldirs \
|
||||
$(srcdir)/run-fortran-ex.sh.in $(srcdir)/testh5fc.sh.in \
|
||||
@ -662,6 +667,8 @@ EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA)
|
||||
# We need to tell automake what to clean
|
||||
MOSTLYCLEANFILES = *.raw *.meta *.o
|
||||
CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA)
|
||||
PPFCCOMPILE = $(FC) $(FCDEFS) $(DEFAULT_INCLUDES) $(FCINCLUDES) $(AM_FCCPPFLAGS) $(FCCPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)
|
||||
LTPPFCCOMPILE = $(LIBTOOL) --tag=FC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(PPFCCOMPILE)
|
||||
|
||||
# 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.,
|
||||
@ -685,8 +692,8 @@ TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_)
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .log .sh .sh$(EXEEXT) .trs
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__configure_deps)
|
||||
.SUFFIXES: .F90 .f90 .log .o .sh .sh$(EXEEXT) .trs
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude_fc.am $(top_srcdir)/config/conclude.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
@ -707,7 +714,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am:
|
||||
$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude_fc.am $(top_srcdir)/config/conclude.am:
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
@ -1155,6 +1162,12 @@ installcheck-local:
|
||||
/bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \
|
||||
fi
|
||||
|
||||
# Treat all .f90 and .F90 files as preprocessed Fortran.
|
||||
.f90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
.F90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
|
||||
# lib/progs/tests targets recurse into subdirectories. build-* targets
|
||||
# build files in this directory.
|
||||
build-lib: $(LIB)
|
||||
|
@ -58,9 +58,8 @@ libhdf5_fortran_la_LIBADD=$(LIBHDF5)
|
||||
DISTCLEANFILES=h5fc
|
||||
|
||||
# H5fortran_types.F90 and H5f90i.h are automatically generaed by
|
||||
# H5match_types, and must be cleaned explicitly. H5fort_type_defines.h
|
||||
# is generated by H5fortran_detect
|
||||
MOSTLYCLEANFILES=H5fortran_types.F90 H5f90i_gen.h H5fort_type_defines.h
|
||||
# H5match_types, and must be cleaned explicitly.
|
||||
MOSTLYCLEANFILES=H5fortran_types.F90 H5f90i_gen.h
|
||||
|
||||
# Fortran module files can have different extensions and different names
|
||||
# (e.g., different capitalizations) on different platforms. Write rules
|
||||
@ -167,4 +166,4 @@ HDF5.lo: $(srcdir)/HDF5.F90 H5f90global.lo H5_ff.lo H5Aff.lo \
|
||||
H5Off.lo H5Pff.lo H5Rff.lo \
|
||||
H5Sff.lo H5Tff.lo H5Zff.lo H5_gen.lo
|
||||
|
||||
include $(top_srcdir)/config/conclude.am
|
||||
include $(top_srcdir)/config/conclude_fc.am
|
||||
|
@ -31,6 +31,10 @@
|
||||
# HDF5 Fortran Library Makefile(.in)
|
||||
#
|
||||
|
||||
# Makefile.am include fragment with Fortran helper rules and macros.
|
||||
|
||||
# AM_FCCPPFLAGS, FCCPPFLAGS are currently not used.
|
||||
|
||||
|
||||
VPATH = @srcdir@
|
||||
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
||||
@ -98,6 +102,7 @@ build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
DIST_COMMON = $(top_srcdir)/config/commence.am \
|
||||
$(top_srcdir)/config/lt_vers.am \
|
||||
$(top_srcdir)/config/conclude_fc.am \
|
||||
$(top_srcdir)/config/conclude.am $(srcdir)/Makefile.in \
|
||||
$(srcdir)/Makefile.am $(srcdir)/H5config_f.inc.in \
|
||||
$(top_srcdir)/bin/mkinstalldirs $(srcdir)/h5fc.in \
|
||||
@ -188,12 +193,6 @@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src
|
||||
depcomp = $(SHELL) $(top_srcdir)/bin/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
PPFCCOMPILE = $(FC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)
|
||||
LTPPFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=compile $(FC) $(DEFS) \
|
||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||
$(AM_FCFLAGS) $(FCFLAGS)
|
||||
AM_V_PPFC = $(am__v_PPFC_@AM_V@)
|
||||
am__v_PPFC_ = $(am__v_PPFC_@AM_DEFAULT_V@)
|
||||
am__v_PPFC_0 = @echo " PPFC " $@;
|
||||
@ -755,7 +754,7 @@ DISTCLEANFILES = h5fc
|
||||
# H5fortran_types.F90 and H5f90i.h are automatically generaed by
|
||||
# H5match_types, and must be cleaned explicitly. H5fort_type_defines.h
|
||||
# is generated by H5fortran_detect
|
||||
MOSTLYCLEANFILES = H5fortran_types.F90 H5f90i_gen.h H5fort_type_defines.h
|
||||
MOSTLYCLEANFILES = H5fortran_types.F90 H5f90i_gen.h
|
||||
@BUILD_PARALLEL_CONDITIONAL_FALSE@H5FC_NAME = h5fc
|
||||
|
||||
# Custom rule for installing h5fc, since it will be named h5pfc if hdf5
|
||||
@ -773,6 +772,8 @@ H5_buildiface_SOURCES = H5_buildiface.F90
|
||||
|
||||
# Mark this directory as part of the Fortran API
|
||||
FORTRAN_API = yes
|
||||
PPFCCOMPILE = $(FC) $(FCDEFS) $(DEFAULT_INCLUDES) $(FCINCLUDES) $(AM_FCCPPFLAGS) $(FCCPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)
|
||||
LTPPFCCOMPILE = $(LIBTOOL) --tag=FC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(PPFCCOMPILE)
|
||||
|
||||
# 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.,
|
||||
@ -798,7 +799,7 @@ all: $(BUILT_SOURCES) H5config_f.inc
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .F90 .c .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__configure_deps)
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude_fc.am $(top_srcdir)/config/conclude.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
@ -819,7 +820,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am:
|
||||
$(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude_fc.am $(top_srcdir)/config/conclude.am:
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
@ -923,9 +924,6 @@ distclean-compile:
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5f90kit.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5match_types.Po@am__quote@
|
||||
|
||||
.F90.o:
|
||||
$(AM_V_PPFC)$(PPFCCOMPILE) -c -o $@ $<
|
||||
|
||||
.F90.obj:
|
||||
$(AM_V_PPFC)$(PPFCCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
@ -953,9 +951,6 @@ distclean-compile:
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
.f90.o:
|
||||
$(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) $<
|
||||
|
||||
.f90.obj:
|
||||
$(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) `$(CYGPATH_W) '$<'`
|
||||
|
||||
@ -1429,6 +1424,12 @@ HDF5.lo: $(srcdir)/HDF5.F90 H5f90global.lo H5_ff.lo H5Aff.lo \
|
||||
H5Off.lo H5Pff.lo H5Rff.lo \
|
||||
H5Sff.lo H5Tff.lo H5Zff.lo H5_gen.lo
|
||||
|
||||
# Treat all .f90 and .F90 files as preprocessed Fortran.
|
||||
.f90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
.F90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
|
||||
# lib/progs/tests targets recurse into subdirectories. build-* targets
|
||||
# build files in this directory.
|
||||
build-lib: $(LIB)
|
||||
|
@ -106,4 +106,4 @@ H5_test_buildiface_LDADD =
|
||||
fflush2.chkexe_: fflush1.chkexe_
|
||||
|
||||
|
||||
include $(top_srcdir)/config/conclude.am
|
||||
include $(top_srcdir)/config/conclude_fc.am
|
||||
|
@ -14,6 +14,10 @@
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
# Makefile.am include fragment with Fortran helper rules and macros.
|
||||
|
||||
# AM_FCCPPFLAGS, FCCPPFLAGS are currently not used.
|
||||
|
||||
|
||||
VPATH = @srcdir@
|
||||
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
||||
@ -80,6 +84,7 @@ POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
DIST_COMMON = $(top_srcdir)/config/commence.am \
|
||||
$(top_srcdir)/config/conclude_fc.am \
|
||||
$(top_srcdir)/config/conclude.am $(srcdir)/Makefile.in \
|
||||
$(srcdir)/Makefile.am $(top_srcdir)/bin/mkinstalldirs \
|
||||
$(top_srcdir)/bin/depcomp $(top_srcdir)/bin/test-driver
|
||||
@ -175,12 +180,6 @@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src -I$(top_builddir)/fortran
|
||||
depcomp = $(SHELL) $(top_srcdir)/bin/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
PPFCCOMPILE = $(FC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)
|
||||
LTPPFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=compile $(FC) $(DEFS) \
|
||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||
$(AM_FCFLAGS) $(FCFLAGS)
|
||||
AM_V_PPFC = $(am__v_PPFC_@AM_V@)
|
||||
am__v_PPFC_ = $(am__v_PPFC_@AM_DEFAULT_V@)
|
||||
am__v_PPFC_0 = @echo " PPFC " $@;
|
||||
@ -780,6 +779,8 @@ H5_test_buildiface_SOURCES = H5_test_buildiface.F90
|
||||
# The build of the H5_test_buildiface does depend on any libraries, so set it
|
||||
# to nothing.
|
||||
H5_test_buildiface_LDADD =
|
||||
PPFCCOMPILE = $(FC) $(FCDEFS) $(DEFAULT_INCLUDES) $(FCINCLUDES) $(AM_FCCPPFLAGS) $(FCCPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)
|
||||
LTPPFCCOMPILE = $(LIBTOOL) --tag=FC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(PPFCCOMPILE)
|
||||
|
||||
# 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.,
|
||||
@ -804,7 +805,7 @@ all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .F90 .c .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps)
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude_fc.am $(top_srcdir)/config/conclude.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
@ -825,7 +826,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am:
|
||||
$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude_fc.am $(top_srcdir)/config/conclude.am:
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
@ -900,9 +901,6 @@ distclean-compile:
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/t.Plo@am__quote@
|
||||
|
||||
.F90.o:
|
||||
$(AM_V_PPFC)$(PPFCCOMPILE) -c -o $@ $<
|
||||
|
||||
.F90.obj:
|
||||
$(AM_V_PPFC)$(PPFCCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
@ -930,9 +928,6 @@ distclean-compile:
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
.f90.o:
|
||||
$(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) $<
|
||||
|
||||
.f90.obj:
|
||||
$(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) `$(CYGPATH_W) '$<'`
|
||||
|
||||
@ -1478,6 +1473,12 @@ tf_gen.F90: H5_test_buildiface$(EXEEXT)
|
||||
# fflush2 depends on files created by fflush1
|
||||
fflush2.chkexe_: fflush1.chkexe_
|
||||
|
||||
# Treat all .f90 and .F90 files as preprocessed Fortran.
|
||||
.f90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
.F90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
|
||||
# lib/progs/tests targets recurse into subdirectories. build-* targets
|
||||
# build files in this directory.
|
||||
build-lib: $(LIB)
|
||||
|
@ -50,4 +50,4 @@ LDADD=$(LIBH5FTEST) $(LIBH5TEST) $(LIBH5F) $(LIBHDF5)
|
||||
# Mark this directory as part of the Fortran API
|
||||
FORTRAN_API=yes
|
||||
|
||||
include $(top_srcdir)/config/conclude.am
|
||||
include $(top_srcdir)/config/conclude_fc.am
|
||||
|
@ -30,6 +30,10 @@
|
||||
#
|
||||
# HDF5 Fortran Parallel Library Test Makefile(.in)
|
||||
#
|
||||
|
||||
# Makefile.am include fragment with Fortran helper rules and macros.
|
||||
|
||||
# AM_FCCPPFLAGS, FCCPPFLAGS are currently not used.
|
||||
VPATH = @srcdir@
|
||||
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
||||
am__make_running_with_option = \
|
||||
@ -95,6 +99,7 @@ POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
DIST_COMMON = $(top_srcdir)/config/commence.am \
|
||||
$(top_srcdir)/config/conclude_fc.am \
|
||||
$(top_srcdir)/config/conclude.am $(srcdir)/Makefile.in \
|
||||
$(srcdir)/Makefile.am $(top_srcdir)/bin/mkinstalldirs \
|
||||
$(top_srcdir)/bin/test-driver
|
||||
@ -685,6 +690,8 @@ LDADD = $(LIBH5FTEST) $(LIBH5TEST) $(LIBH5F) $(LIBHDF5)
|
||||
|
||||
# Mark this directory as part of the Fortran API
|
||||
FORTRAN_API = yes
|
||||
PPFCCOMPILE = $(FC) $(FCDEFS) $(DEFAULT_INCLUDES) $(FCINCLUDES) $(AM_FCCPPFLAGS) $(FCCPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)
|
||||
LTPPFCCOMPILE = $(LIBTOOL) --tag=FC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(PPFCCOMPILE)
|
||||
|
||||
# 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.,
|
||||
@ -708,8 +715,8 @@ TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_)
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps)
|
||||
.SUFFIXES: .F90 .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude_fc.am $(top_srcdir)/config/conclude.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
@ -730,7 +737,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am:
|
||||
$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude_fc.am $(top_srcdir)/config/conclude.am:
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
@ -760,9 +767,6 @@ mostlyclean-compile:
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
.f90.o:
|
||||
$(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) $<
|
||||
|
||||
.f90.obj:
|
||||
$(AM_V_FC)$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) `$(CYGPATH_W) '$<'`
|
||||
|
||||
@ -1138,6 +1142,12 @@ uninstall-am:
|
||||
help:
|
||||
@$(top_srcdir)/bin/makehelp
|
||||
|
||||
# Treat all .f90 and .F90 files as preprocessed Fortran.
|
||||
.f90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
.F90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
|
||||
# lib/progs/tests targets recurse into subdirectories. build-* targets
|
||||
# build files in this directory.
|
||||
build-lib: $(LIB)
|
||||
|
@ -64,4 +64,4 @@ EXAMPLETOPDIR=${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl
|
||||
# and fortran libraries above.
|
||||
|
||||
include $(top_srcdir)/config/examples.am
|
||||
include $(top_srcdir)/config/conclude.am
|
||||
include $(top_srcdir)/config/conclude_fc.am
|
||||
|
@ -34,6 +34,10 @@
|
||||
# We can't tell automake about example programs, because they need to be
|
||||
# built using h5cc (or h5fc, etc.) instead of the standard compilers.
|
||||
# This creates some extra work for us.
|
||||
|
||||
# Makefile.am include fragment with Fortran helper rules and macros.
|
||||
|
||||
# AM_FCCPPFLAGS, FCCPPFLAGS are currently not used.
|
||||
VPATH = @srcdir@
|
||||
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
||||
am__make_running_with_option = \
|
||||
@ -100,6 +104,7 @@ build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
DIST_COMMON = $(top_srcdir)/config/commence.am \
|
||||
$(top_srcdir)/config/examples.am \
|
||||
$(top_srcdir)/config/conclude_fc.am \
|
||||
$(top_srcdir)/config/conclude.am $(srcdir)/Makefile.in \
|
||||
$(srcdir)/Makefile.am $(top_srcdir)/bin/mkinstalldirs \
|
||||
$(srcdir)/run-hlfortran-ex.sh.in $(top_srcdir)/bin/test-driver
|
||||
@ -650,6 +655,8 @@ EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA)
|
||||
# We need to tell automake what to clean
|
||||
MOSTLYCLEANFILES = *.raw *.meta *.o
|
||||
CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA)
|
||||
PPFCCOMPILE = $(FC) $(FCDEFS) $(DEFAULT_INCLUDES) $(FCINCLUDES) $(AM_FCCPPFLAGS) $(FCCPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)
|
||||
LTPPFCCOMPILE = $(LIBTOOL) --tag=FC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(PPFCCOMPILE)
|
||||
|
||||
# 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.,
|
||||
@ -673,8 +680,8 @@ TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_)
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .log .sh .sh$(EXEEXT) .trs
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am $(am__configure_deps)
|
||||
.SUFFIXES: .F90 .f90 .log .o .sh .sh$(EXEEXT) .trs
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude_fc.am $(top_srcdir)/config/conclude.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
@ -695,7 +702,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude.am:
|
||||
$(top_srcdir)/config/commence.am $(top_srcdir)/config/examples.am $(top_srcdir)/config/conclude_fc.am $(top_srcdir)/config/conclude.am:
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
@ -1105,6 +1112,12 @@ installcheck-local:
|
||||
/bin/sh ./$(TEST_EXAMPLES_SCRIPT);) \
|
||||
fi
|
||||
|
||||
# Treat all .f90 and .F90 files as preprocessed Fortran.
|
||||
.f90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
.F90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
|
||||
# lib/progs/tests targets recurse into subdirectories. build-* targets
|
||||
# build files in this directory.
|
||||
build-lib: $(LIB)
|
||||
|
@ -102,4 +102,4 @@ H5IMff.lo: $(srcdir)/H5IMff.F90
|
||||
H5TBff.lo: $(srcdir)/H5TBff.F90
|
||||
H5LTff_gen.lo: H5LTff.lo H5LTff_gen.F90
|
||||
H5TBff_gen.lo: H5TBff.lo H5LTff_gen.F90 H5TBff_gen.F90
|
||||
include $(top_srcdir)/config/conclude.am
|
||||
include $(top_srcdir)/config/conclude_fc.am
|
||||
|
@ -31,6 +31,10 @@
|
||||
#
|
||||
# HDF5 High-Level Fortran Makefile(.in)
|
||||
|
||||
# Makefile.am include fragment with Fortran helper rules and macros.
|
||||
|
||||
# AM_FCCPPFLAGS, FCCPPFLAGS are currently not used.
|
||||
|
||||
|
||||
VPATH = @srcdir@
|
||||
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
||||
@ -98,6 +102,7 @@ build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
DIST_COMMON = $(top_srcdir)/config/commence.am \
|
||||
$(top_srcdir)/config/lt_vers.am \
|
||||
$(top_srcdir)/config/conclude_fc.am \
|
||||
$(top_srcdir)/config/conclude.am $(srcdir)/Makefile.in \
|
||||
$(srcdir)/Makefile.am $(top_srcdir)/bin/mkinstalldirs \
|
||||
$(top_srcdir)/bin/depcomp $(top_srcdir)/bin/test-driver
|
||||
@ -181,12 +186,6 @@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src -I$(top_builddir)/fortran
|
||||
depcomp = $(SHELL) $(top_srcdir)/bin/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
PPFCCOMPILE = $(FC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)
|
||||
LTPPFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=compile $(FC) $(DEFS) \
|
||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||
$(AM_FCFLAGS) $(FCFLAGS)
|
||||
AM_V_PPFC = $(am__v_PPFC_@AM_V@)
|
||||
am__v_PPFC_ = $(am__v_PPFC_@AM_DEFAULT_V@)
|
||||
am__v_PPFC_0 = @echo " PPFC " $@;
|
||||
@ -736,6 +735,8 @@ libhdf5hl_fortran_la_LIBADD = $(LIBH5_HL) $(LIBH5F)
|
||||
# H5HL_buildiface.F90 is included in the distribution, and Automake knows
|
||||
# how to compile a fortran program given its sources.
|
||||
H5HL_buildiface_SOURCES = H5HL_buildiface.F90
|
||||
PPFCCOMPILE = $(FC) $(FCDEFS) $(DEFAULT_INCLUDES) $(FCINCLUDES) $(AM_FCCPPFLAGS) $(FCCPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)
|
||||
LTPPFCCOMPILE = $(LIBTOOL) --tag=FC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(PPFCCOMPILE)
|
||||
|
||||
# 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.,
|
||||
@ -759,8 +760,8 @@ TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_)
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .F90 .c .lo .log .o .obj .sh .sh$(EXEEXT) .trs
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am $(am__configure_deps)
|
||||
.SUFFIXES: .F90 .c .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude_fc.am $(top_srcdir)/config/conclude.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
@ -781,7 +782,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude.am:
|
||||
$(top_srcdir)/config/commence.am $(top_srcdir)/config/lt_vers.am $(top_srcdir)/config/conclude_fc.am $(top_srcdir)/config/conclude.am:
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
@ -855,9 +856,6 @@ distclean-compile:
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5LTfc.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/H5TBfc.Plo@am__quote@
|
||||
|
||||
.F90.o:
|
||||
$(AM_V_PPFC)$(PPFCCOMPILE) -c -o $@ $<
|
||||
|
||||
.F90.obj:
|
||||
$(AM_V_PPFC)$(PPFCCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
@ -1317,6 +1315,12 @@ H5TBff.lo: $(srcdir)/H5TBff.F90
|
||||
H5LTff_gen.lo: H5LTff.lo H5LTff_gen.F90
|
||||
H5TBff_gen.lo: H5TBff.lo H5LTff_gen.F90 H5TBff_gen.F90
|
||||
|
||||
# Treat all .f90 and .F90 files as preprocessed Fortran.
|
||||
.f90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
.F90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
|
||||
# lib/progs/tests targets recurse into subdirectories. build-* targets
|
||||
# build files in this directory.
|
||||
build-lib: $(LIB)
|
||||
|
@ -51,4 +51,4 @@ CHECK_CLEANFILES+=dsetf[1-5].h5 f1img.h5 f1tab.h5 tstds.h5
|
||||
# from tests in conclude.am)
|
||||
FORTRAN_API=yes
|
||||
|
||||
include $(top_srcdir)/config/conclude.am
|
||||
include $(top_srcdir)/config/conclude_fc.am
|
||||
|
@ -30,6 +30,10 @@
|
||||
#
|
||||
#
|
||||
# HDF5 High-Level Fortran Makefile(.in)
|
||||
|
||||
# Makefile.am include fragment with Fortran helper rules and macros.
|
||||
|
||||
# AM_FCCPPFLAGS, FCCPPFLAGS are currently not used.
|
||||
VPATH = @srcdir@
|
||||
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
||||
am__make_running_with_option = \
|
||||
@ -95,6 +99,7 @@ POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
DIST_COMMON = $(top_srcdir)/config/commence.am \
|
||||
$(top_srcdir)/config/conclude_fc.am \
|
||||
$(top_srcdir)/config/conclude.am $(srcdir)/Makefile.in \
|
||||
$(srcdir)/Makefile.am $(top_srcdir)/bin/mkinstalldirs \
|
||||
$(top_srcdir)/bin/test-driver
|
||||
@ -151,12 +156,6 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
||||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src -I$(top_builddir)/fortran/src
|
||||
PPFCCOMPILE = $(FC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)
|
||||
LTPPFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=compile $(FC) $(DEFS) \
|
||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||
$(AM_FCFLAGS) $(FCFLAGS)
|
||||
AM_V_PPFC = $(am__v_PPFC_@AM_V@)
|
||||
am__v_PPFC_ = $(am__v_PPFC_@AM_DEFAULT_V@)
|
||||
am__v_PPFC_0 = @echo " PPFC " $@;
|
||||
@ -703,6 +702,8 @@ tsttable_SOURCES = tsttable.F90
|
||||
# Mark this directory as part of the Fortran API (this affects output
|
||||
# from tests in conclude.am)
|
||||
FORTRAN_API = yes
|
||||
PPFCCOMPILE = $(FC) $(FCDEFS) $(DEFAULT_INCLUDES) $(FCINCLUDES) $(AM_FCCPPFLAGS) $(FCCPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)
|
||||
LTPPFCCOMPILE = $(LIBTOOL) --tag=FC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(PPFCCOMPILE)
|
||||
|
||||
# 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.,
|
||||
@ -726,8 +727,8 @@ TEST_SCRIPT_PARA_CHKSH = $(TEST_SCRIPT_PARA:=.chkexe_)
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .F90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am $(am__configure_deps)
|
||||
.SUFFIXES: .F90 .f90 .lo .log .o .obj .sh .sh$(EXEEXT) .trs
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude_fc.am $(top_srcdir)/config/conclude.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
@ -748,7 +749,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude.am:
|
||||
$(top_srcdir)/config/commence.am $(top_srcdir)/config/conclude_fc.am $(top_srcdir)/config/conclude.am:
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
@ -790,9 +791,6 @@ mostlyclean-compile:
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
.F90.o:
|
||||
$(AM_V_PPFC)$(PPFCCOMPILE) -c -o $@ $<
|
||||
|
||||
.F90.obj:
|
||||
$(AM_V_PPFC)$(PPFCCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
@ -1196,6 +1194,12 @@ uninstall-am:
|
||||
help:
|
||||
@$(top_srcdir)/bin/makehelp
|
||||
|
||||
# Treat all .f90 and .F90 files as preprocessed Fortran.
|
||||
.f90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
.F90.o:
|
||||
$(PPFCCOMPILE) -c -o $@ $(FCFLAGS) $<
|
||||
|
||||
# lib/progs/tests targets recurse into subdirectories. build-* targets
|
||||
# build files in this directory.
|
||||
build-lib: $(LIB)
|
||||
|
Loading…
x
Reference in New Issue
Block a user