1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-28 21:50:02 +02:00
gnupg/mpi/Makefile.am

66 lines
1.7 KiB
Makefile
Raw Normal View History

1997-11-18 15:06:00 +01:00
## Process this file with automake to produce Makefile.in
1998-02-09 18:43:42 +01:00
INCLUDES = -I$(top_srcdir)/include
CFLAGS = @CFLAGS@ @MPI_OPT_FLAGS@
SFLAGS = @MPI_SFLAGS@
1997-11-18 15:06:00 +01:00
1997-12-16 20:15:09 +01:00
EXTRA_DIST = config.links
1998-03-03 09:43:28 +01:00
DISTCLEANFILES = mpih-add1.S mpih-mul1.S mpih-mul2.S mpih-mul3.S \
1998-05-26 15:38:00 +02:00
mpih-lshift.S mpih-rshift.S mpih-sub1.S asm-syntax.h sysdep.h
CLEANFILES = tmp-*.s
1997-12-16 20:15:09 +01:00
noinst_LTLIBRARIES = libmpi.la
1997-11-18 15:06:00 +01:00
libmpi_la_LDFLAGS =
libmpi_la_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-inline.c \
1997-11-26 22:06:44 +01:00
mpi-inv.c \
mpi-mul.c \
mpi-pow.c \
mpi-mpow.c \
1997-11-26 22:06:44 +01:00
mpi-scan.c \
mpicoder.c \
mpih-cmp.c \
mpih-div.c \
mpih-mul.c \
1998-06-13 19:00:02 +02:00
mpiutil.c \
g10m.c
1997-11-18 15:06:00 +01:00
1998-02-03 13:09:20 +01:00
# Note this objects are actually links, the sourcefiles are
# distributed by special code in dist-hook
common_asm_objects = mpih-mul1.lo \
mpih-mul2.lo \
mpih-mul3.lo \
mpih-add1.lo \
mpih-sub1.lo \
mpih-lshift.lo \
mpih-rshift.lo
1998-02-03 13:09:20 +01:00
libmpi_la_DEPENDENCIES = $(common_asm_objects) @MPI_EXTRA_ASM_OBJS@
libmpi_la_LIBADD = $(common_asm_objects) @MPI_EXTRA_ASM_OBJS@
1997-11-26 23:02:28 +01:00
SUFFIXES = .S
.S.o:
$(CPP) $(INCLUDES) $(DEFS) $< | grep -v '^#' >tmp-$*.s
$(CC) $(CFLAGS) $(SFLAGS) -c tmp-$*.s
mv tmp-$*.o $@
rm -f tmp-$*.s
.S.lo:
$(CPP) $(INCLUDES) $(DEFS) $< | grep -v '^#' >tmp-$*.s
if test -f tmp-$*.lo; then rm tmp-$*.lo; fi
if test -f tmp-$*.o ; then rm tmp-$*.o ; fi
$(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $(SFLAGS) -c tmp-$*.s
if test -f tmp-$*.lo; then mv tmp-$*.lo $*.lo; fi
if test -f tmp-$*.o ; then mv tmp-$*.o $*.o ; fi
rm -f tmp-$*.s