From 6f282bd38554dc00777b847b0a22c110c095a0fb Mon Sep 17 00:00:00 2001 From: Gilles Gouaillardet Date: Fri, 11 Dec 2020 09:44:34 +0900 Subject: [PATCH] do not include automatically generated file into the dist tarball - ompi/mpi/fortran/use-mpi-f08/mod/mpi-f08-interfaces.h - ompi/mpiext/shortfloat/c/mpiext_shortfloat_c.h - ompi/mpiext/shortfloat/mpif-h/mpiext_shortfloat_mpifh.h - ompi/mpiext/shortfloat/use-mpi-f08/mpiext_shortfloat_usempif08.h Signed-off-by: Gilles Gouaillardet --- ompi/mpi/fortran/use-mpi-f08/mod/Makefile.am | 3 ++- ompi/mpiext/shortfloat/c/Makefile.am | 2 +- ompi/mpiext/shortfloat/mpif-h/Makefile.am | 4 ++-- ompi/mpiext/shortfloat/use-mpi-f08/Makefile.am | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/ompi/mpi/fortran/use-mpi-f08/mod/Makefile.am b/ompi/mpi/fortran/use-mpi-f08/mod/Makefile.am index 410db50920..87f1c2db8b 100644 --- a/ompi/mpi/fortran/use-mpi-f08/mod/Makefile.am +++ b/ompi/mpi/fortran/use-mpi-f08/mod/Makefile.am @@ -62,8 +62,9 @@ libforce_usempif08_internal_modules_to_be_built_la_SOURCES = \ pmpi-f08-interfaces.F90 \ mpi-f08-interfaces-callbacks.F90 -noinst_HEADERS = mpi-f08-interfaces.h mpi-f08-rename.h +nodist_noinst_HEADERS = mpi-f08-interfaces.h +noinst_HEADERS = mpi-f08-rename.h libforce_usempi_internal_modules_to_be_built.la: libusempif08_internal_modules.la diff --git a/ompi/mpiext/shortfloat/c/Makefile.am b/ompi/mpiext/shortfloat/c/Makefile.am index 595e829e1a..6031635dc1 100644 --- a/ompi/mpiext/shortfloat/c/Makefile.am +++ b/ompi/mpiext/shortfloat/c/Makefile.am @@ -14,4 +14,4 @@ ompidir = $(ompiincludedir)/mpiext # This is the header file that is installed. -ompi_HEADERS = mpiext_shortfloat_c.h +nodist_ompi_HEADERS = mpiext_shortfloat_c.h diff --git a/ompi/mpiext/shortfloat/mpif-h/Makefile.am b/ompi/mpiext/shortfloat/mpif-h/Makefile.am index 81a7ed326a..460361c4d1 100644 --- a/ompi/mpiext/shortfloat/mpif-h/Makefile.am +++ b/ompi/mpiext/shortfloat/mpif-h/Makefile.am @@ -13,13 +13,13 @@ ompidir = $(ompiincludedir)/mpiext # Just like noinst_LTLIBRARIES, set this macro to empty and # conditionally add to it later. -ompi_HEADERS = +nodist_ompi_HEADERS = # Use the Automake conditional to know if we're building the mpif.h # bindings. if OMPI_BUILD_FORTRAN_MPIFH_BINDINGS # This is the header file that is installed. -ompi_HEADERS += mpiext_shortfloat_mpifh.h +nodist_ompi_HEADERS += mpiext_shortfloat_mpifh.h endif diff --git a/ompi/mpiext/shortfloat/use-mpi-f08/Makefile.am b/ompi/mpiext/shortfloat/use-mpi-f08/Makefile.am index fc276abc44..c600057a2d 100644 --- a/ompi/mpiext/shortfloat/use-mpi-f08/Makefile.am +++ b/ompi/mpiext/shortfloat/use-mpi-f08/Makefile.am @@ -20,6 +20,6 @@ if OMPI_BUILD_FORTRAN_USEMPIF08_BINDINGS # mpiext_shortfloat_usempif08.h is automatically slurped up into the # mpi_f08_ext module. It must be listed so that it is included in # dist tarballs. -noinst_HEADERS = mpiext_shortfloat_usempif08.h +nodist_noinst_HEADERS = mpiext_shortfloat_usempif08.h endif