summaryrefslogtreecommitdiffstats
path: root/crypto/rc4
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-07-18 18:56:16 +0000
committerAndy Polyakov <appro@openssl.org>2005-07-18 18:56:16 +0000
commit843d9d0b39b1ca57364c293a4d5ee060f5829f7e (patch)
tree05bc3518fa4d60a6ed026ba3aa772c7ccbe3d671 /crypto/rc4
parent4ac210c16aec67d79fb1ee2cd67ae1fd25e61130 (diff)
Switch to new RC4 IA-64 module.
Diffstat (limited to 'crypto/rc4')
-rw-r--r--crypto/rc4/Makefile9
1 files changed, 6 insertions, 3 deletions
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