1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-12-23 10:29:58 +01:00
gnupg/mpi/Makefile.am

61 lines
1.5 KiB
Makefile
Raw Normal View History

1997-11-18 14:06:00 +00:00
## Process this file with automake to produce Makefile.in
1998-02-09 17:43:42 +00:00
INCLUDES = -I$(top_srcdir)/include
CFLAGS = @CFLAGS@ @MPI_OPT_FLAGS@
ASFLAGS = @MPI_SFLAGS@
1997-11-18 14:06:00 +00:00
1997-12-16 19:15:09 +00:00
EXTRA_DIST = config.links
1998-03-03 08:43:28 +00:00
DISTCLEANFILES = mpih-add1.S mpih-mul1.S mpih-mul2.S mpih-mul3.S \
1998-05-26 13:38:00 +00:00
mpih-lshift.S mpih-rshift.S mpih-sub1.S asm-syntax.h sysdep.h
# Note: we only use .S files so we should delete all left over .s
CLEANFILES = _*.s
1997-12-16 19:15:09 +00:00
noinst_LIBRARIES = libmpi.a
1997-11-18 14:06:00 +00:00
# libmpi_a_LDFLAGS =
libmpi_a_SOURCES = longlong.h \
1997-11-26 21:06:44 +00:00
mpi-add.c \
mpi-bit.c \
mpi-cmp.c \
mpi-div.c \
mpi-gcd.c \
mpi-internal.h \
mpi-inline.h \
mpi-inline.c \
1997-11-26 21:06:44 +00:00
mpi-inv.c \
mpi-mul.c \
mpi-pow.c \
mpi-mpow.c \
1997-11-26 21:06:44 +00:00
mpi-scan.c \
mpicoder.c \
mpih-cmp.c \
mpih-div.c \
mpih-mul.c \
1998-06-13 17:00:02 +00:00
mpiutil.c \
g10m.c
1997-11-18 14:06:00 +00:00
1998-02-03 12:09:20 +00:00
# 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-lshift.o \
mpih-rshift.o
1998-02-03 12:09:20 +00:00
libmpi_a_DEPENDENCIES = $(common_asm_objects) @MPI_EXTRA_ASM_OBJS@
libmpi_a_LIBADD = $(common_asm_objects) @MPI_EXTRA_ASM_OBJS@
1997-11-26 22:02:28 +00:00
# cancel the default rules used by libtool which do not really
# work and add one to cpp .S files
.S.o:
$(CPP) $(INCLUDES) $(DEFS) $< | grep -v '^#' > _$*.s
$(COMPILE) -c _$*.s
mv -f _$*.o $*.o
.S.lo: