diff options
Diffstat (limited to '')
-rw-r--r-- | mpi/Makefile.am | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/mpi/Makefile.am b/mpi/Makefile.am index f7567e5f2..a9df442e6 100644 --- a/mpi/Makefile.am +++ b/mpi/Makefile.am @@ -1,7 +1,6 @@ ## Process this file with automake to produce Makefile.in - -INCLUDES = -I$(top_srcdir)/gcrypt +INCLUDES = -I$(top_srcdir)/gcrypt CFLAGS = @CFLAGS@ @MPI_OPT_FLAGS@ ASFLAGS = @MPI_SFLAGS@ @@ -12,6 +11,8 @@ DISTCLEANFILES = mpih-add1.S mpih-mul1.S mpih-mul2.S mpih-mul3.S \ # CLEANFILES = _*.s CLEANFILES = *.s +OMIT_DEPENDENCIES = types.h gcrypt.h + noinst_LTLIBRARIES = libmpi.la libmpi_la_LDFLAGS = @@ -33,7 +34,8 @@ libmpi_la_SOURCES = longlong.h \ mpih-cmp.c \ mpih-div.c \ mpih-mul.c \ - mpiutil.c + mpiutil.c \ + mpi.h # Note this objects are actually links, the sourcefiles are # distributed by special code in dist-hook @@ -63,3 +65,4 @@ libmpi_la_LIBADD = $(common_asm_objects) @MPI_EXTRA_ASM_OBJS@ # $(COMPILE) -c _$*.s # mv -f _$*.o $*.o + |