diff options
Diffstat (limited to 'mpi/Makefile.am')
-rw-r--r-- | mpi/Makefile.am | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/mpi/Makefile.am b/mpi/Makefile.am new file mode 100644 index 000000000..5edd90c28 --- /dev/null +++ b/mpi/Makefile.am @@ -0,0 +1,27 @@ +## Process this file with automake to produce Makefile.in + +INCLUDES = -I$(top_srcdir)/include + +noinst_LIBRARIES = mpi + + +mpi_SOURCES = longlong.h \ + mpi-add.c \ + mpi-bit.c \ + mpi-cmp.c \ + mpi-div.c \ + mpi-gcd.c \ + mpi-internal.h \ + mpi-inv.c \ + mpi-mul.c \ + mpi-pow.c \ + mpi-scan.c \ + mpicoder.c \ + mpihelp-add.c \ + mpihelp-cmp.c \ + mpihelp-div.c \ + mpihelp-mul.c \ + mpihelp-shift.c \ + mpihelp-sub.c \ + mpiutil.c + |