1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-11 23:59:50 +02:00
gnupg/mpi/Makefile.am

42 lines
846 B
Makefile
Raw Normal View History

1997-11-18 15:06:00 +01:00
## Process this file with automake to produce Makefile.in
1998-02-02 15:36:06 +01:00
INCLUDES = -I.. -I$(top_srcdir)/include
1997-11-26 22:06:44 +01:00
CFLAGS += -O2
1997-11-18 15:06:00 +01:00
1997-11-26 23:02:28 +01:00
SUFFIXES = .S .s
1997-11-18 15:06:00 +01:00
1997-12-16 20:15:09 +01:00
EXTRA_DIST = config.links
1998-02-02 15:36:06 +01:00
noinst_LIBRARIES = libmpi.a
# noinst_HEADERS =
1997-11-18 15:06:00 +01:00
1998-02-02 15:36:06 +01:00
libmpi_a_SOURCES = longlong.h \
1997-11-26 22:06:44 +01:00
mpi-add.c \
mpi-bit.c \
mpi-cmp.c \
mpi-div.c \
mpi-gcd.c \
mpi-internal.h \
mpi-inline.h \
mpi-inv.c \
mpi-mul.c \
mpi-pow.c \
mpi-scan.c \
mpicoder.c \
mpih-cmp.c \
1997-11-26 23:02:28 +01:00
mpih-add.c \
mpih-sub.c \
1997-11-26 22:06:44 +01:00
mpih-div.c \
mpih-mul.c \
1997-11-18 15:06:00 +01:00
mpiutil.c
1998-02-02 15:36:06 +01:00
libmpi_a_LIBADD = mpih-mul1.o \
1997-11-26 23:02:28 +01:00
mpih-mul2.o \
mpih-mul3.o \
mpih-add1.o \
mpih-sub1.o \
1998-01-07 12:07:05 +01:00
mpih-shift.o @MPI_EXTRA_ASM_OBJS@
1997-11-26 23:02:28 +01:00