1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

See ChangeLog: Tue Mar 14 18:54:19 CET 2000 Werner Koch

This commit is contained in:
Werner Koch 2000-03-14 17:50:27 +00:00
parent eb5727c51d
commit e243db9748
11 changed files with 68 additions and 45 deletions

View file

@ -1,3 +1,8 @@
2000-03-14 12:03:56 Werner Koch (wk@habibti.openit.de)
* Makefile.am: Do not use .s and .S files but a temp names, so that
OSes with caseinsensitive filenames do work. From Frank Donahoe.
Tue Mar 7 18:45:31 CET 2000 Werner Koch <wk@gnupg.de>
* mpih-mul.c (mpihelp_mul_karatsuba_case): It seems that the

View file

@ -9,7 +9,7 @@ EXTRA_DIST = config.links
DISTCLEANFILES = mpih-add1.S mpih-mul1.S mpih-mul2.S mpih-mul3.S \
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
CLEANFILES = _*.s
noinst_LIBRARIES = libmpi.a
@ -51,10 +51,10 @@ libmpi_a_LIBADD = $(common_asm_objects) @MPI_EXTRA_ASM_OBJS@
# 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:
.S.s:
$(CPP) $(INCLUDES) $(DEFS) $< | grep -v '^#' >$*.s