From: Andy Polyakov Date: Mon, 18 Jul 2005 18:56:16 +0000 (+0000) Subject: Switch to new RC4 IA-64 module. X-Git-Tag: OpenSSL_0_9_8k^2~1926 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=843d9d0b39b1ca57364c293a4d5ee060f5829f7e Switch to new RC4 IA-64 module. --- diff --git a/crypto/rc4/Makefile b/crypto/rc4/Makefile index 6d48fb840a..1ec08aaf53 100644 --- a/crypto/rc4/Makefile +++ b/crypto/rc4/Makefile @@ -53,10 +53,13 @@ rx86-out.s: asm/rc4-586.pl ../perlasm/x86asm.pl rc4-x86_64.s: asm/rc4-x86_64.pl; $(PERL) asm/rc4-x86_64.pl $@ -rc4-ia64.s: asm/rc4-ia64.S +rc4-ia64.S: asm/rc4-ia64.pl + $(PERL) asm/rc4-ia64.pl $(CFLAGS) > $@ + +rc4-ia64.s: rc4-ia64.S @case `awk '/^#define RC4_INT/{print$$NF}' $(TOP)/include/openssl/opensslconf.h` in \ - int) set -x; $(CC) $(CFLAGS) -DSZ=4 -E asm/rc4-ia64.S > $@ ;; \ - char) set -x; $(CC) $(CFLAGS) -DSZ=1 -E asm/rc4-ia64.S > $@ ;; \ + int) set -x; $(CC) $(CFLAGS) -DSZ=4 -E rc4-ia64.S > $@ ;; \ + char) set -x; $(CC) $(CFLAGS) -DSZ=1 -E rc4-ia64.S > $@ ;; \ *) exit 1 ;; \ esac