diff options
Diffstat (limited to 'mpi/Makefile.in')
-rw-r--r-- | mpi/Makefile.in | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/mpi/Makefile.in b/mpi/Makefile.in index 98b42753d..c9ae7cfd0 100644 --- a/mpi/Makefile.in +++ b/mpi/Makefile.in @@ -72,6 +72,7 @@ G10_LOCALEDIR = @G10_LOCALEDIR@ GENCAT = @GENCAT@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ +HAVE_ZLIB_H = @HAVE_ZLIB_H@ INSTOBJEXT = @INSTOBJEXT@ INTLDEPS = @INTLDEPS@ INTLLIBS = @INTLLIBS@ @@ -114,12 +115,16 @@ libmpi_a_SOURCES = longlong.h \ mpih-mul.c \ mpiutil.c -libmpi_a_LIBADD = mpih-mul1.o \ - mpih-mul2.o \ - mpih-mul3.o \ - mpih-add1.o \ - mpih-sub1.o \ - mpih-shift.o @MPI_EXTRA_ASM_OBJS@ +# Note this objects are actually links, the sourcefiles are +# distributed by special code in dist-hook +common_asm_objects = mpih-mul1.o \ + mpih-mul2.o \ + mpih-mul3.o \ + mpih-add1.o \ + mpih-sub1.o \ + mpih-shift.o + +libmpi_a_LIBADD = $(common_asm_objects) @MPI_EXTRA_ASM_OBJS@ mkinstalldirs = $(SHELL) $(top_srcdir)/scripts/mkinstalldirs CONFIG_HEADER = ../config.h CONFIG_CLEAN_FILES = @@ -328,6 +333,8 @@ maintainer-clean-generic clean mostlyclean distclean maintainer-clean CFLAGS += -O2 +$(LIBRARIES): $(common_asm_objects) @MPI_EXTRA_ASM_OBJS@ + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: |