1
1
Always include into the tarball (aka 'make dist') :
 - mpi-f90-interfaces.h
 - mpi-f90-cptr-interfaces.F90

cmr=v1.8.2:ticket=trac:4736

This commit was SVN r32215.

The following Trac tickets were found above:
  Ticket 4736 --> https://svn.open-mpi.org/trac/ompi/ticket/4736
Этот коммит содержится в:
Gilles Gouaillardet 2014-07-11 05:05:19 +00:00
родитель ebd2a4be08
Коммит ee9098e2ee

Просмотреть файл

@ -13,6 +13,8 @@
# Copyright (c) 2006-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2007 Los Alamos National Security, LLC. All rights
# reserved.
# Copyright (c) 2014 Research Organization for Information Science
# and Technology (RIST). All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -42,7 +44,6 @@ AM_FCFLAGS = -I$(top_builddir)/ompi/include -I$(top_srcdir)/ompi/include \
# going to build F90 bindings or not.
lib_LTLIBRARIES =
if OMPI_BUILD_FORTRAN_USEMPI_TKR_BINDINGS
# Add the f90 library to the list of libraries to build
@ -57,18 +58,6 @@ mpi.lo: mpi-f90-interfaces.h
mpi.lo: $(top_builddir)/ompi/mpi/fortran/configure-fortran-output.h
mpi.lo: mpi-f90-cptr-interfaces.F90
# These files must be EXTRA_DIST'ed because they are included; they
# are not compiled directly (and we *can't* list the .F90 file in
# _SOURCES, because it would be compiled -- but it *must* have a .F90
# suffix so that the Fortran compiler will interpret the #if
# directives properly).
EXTRA_DIST = \
mpi-f90-interfaces.h \
mpi-f90-cptr-interfaces.F90
endif
# Per MPI-3 p610:34-41, if we're building a TKR mpi module, we should
# not build any interfaces for MPI subroutines that take a choice
# buffer dummy argument. We therefore really only need to build a
@ -104,7 +93,6 @@ DISTCLEANFILES = $(nodist_libmpi_usempi_la_SOURCES)
# may generate different filenames, so we have to use a glob. :-(
#
if OMPI_BUILD_FORTRAN_USEMPI_TKR_BINDINGS
install-exec-hook:
@ for file in `ls *.mod`; do \
echo $(INSTALL) $$file $(DESTDIR)$(libdir); \
@ -116,15 +104,17 @@ uninstall-local:
echo rm -f $(DESTDIR)$(libdir)/$$file; \
rm -f $(DESTDIR)$(libdir)/$$file; \
done
else
# Need to have empty targets because AM can't handle having an
# AM_CONDITIONAL was targets in the "if" statement but not in the
# "else". :-(
install-exec-hook:
uninstall-local:
endif
# if OMPI_BUILD_FORTRAN_USEMPI_TKR_BINDINGS
endif
# These files must be EXTRA_DIST'ed because they are included; they
# are not compiled directly (and we *can't* list the .F90 file in
# _SOURCES, because it would be compiled -- but it *must* have a .F90
# suffix so that the Fortran compiler will interpret the #if
# directives properly).
EXTRA_DIST = \
mpi-f90-interfaces.h \
mpi-f90-cptr-interfaces.F90