summaryrefslogtreecommitdiff
path: root/crypto/sha/Makefile
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2007-09-14 21:06:14 +0000
committerAndy Polyakov <appro@openssl.org>2007-09-14 21:06:14 +0000
commit563d3e5948a17328819f90b2ab20477256ada1f4 (patch)
treeedf9dfa26ed81b62b25b0ebcd548932a142406e4 /crypto/sha/Makefile
parent1187ee7dad8a3809192d24e6f1c69718767caa88 (diff)
downloadopenssl-new-563d3e5948a17328819f90b2ab20477256ada1f4.tar.gz
Engage new x86 assembler modules.
Diffstat (limited to 'crypto/sha/Makefile')
-rw-r--r--crypto/sha/Makefile18
1 files changed, 12 insertions, 6 deletions
diff --git a/crypto/sha/Makefile b/crypto/sha/Makefile
index 1231f1da38..e02d9f1dc3 100644
--- a/crypto/sha/Makefile
+++ b/crypto/sha/Makefile
@@ -45,18 +45,24 @@ lib: $(LIBOBJ)
# ELF
sx86-elf.s: asm/sha1-586.pl ../perlasm/x86asm.pl
(cd asm; $(PERL) sha1-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)
-s512sse2-elf.s: asm/sha512-sse2.pl ../perlasm/x86asm.pl
- (cd asm; $(PERL) sha512-sse2.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)
+sha256x86-elf.s: asm/sha256-586.pl ../perlasm/x86asm.pl
+ (cd asm; $(PERL) sha256-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)
+sha512x86-elf.s: asm/sha512-586.pl ../perlasm/x86asm.pl
+ (cd asm; $(PERL) sha512-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)
# COFF
sx86-cof.s: asm/sha1-586.pl ../perlasm/x86asm.pl
(cd asm; $(PERL) sha1-586.pl coff $(CFLAGS) $(PROCESSOR) > ../$@)
-s512sse2-cof.s: asm/sha512-sse2.pl ../perlasm/x86asm.pl
- (cd asm; $(PERL) sha512-sse2.pl coff $(CFLAGS) $(PROCESSOR) > ../$@)
+sha256x86-cof.s: asm/sha256-586.pl ../perlasm/x86asm.pl
+ (cd asm; $(PERL) sha256-586.pl coff $(CFLAGS) $(PROCESSOR) > ../$@)
+sha512x86-cof.s: asm/sha512-586.pl ../perlasm/x86asm.pl
+ (cd asm; $(PERL) sha512-586.pl coff $(CFLAGS) $(PROCESSOR) > ../$@)
# a.out
sx86-out.s: asm/sha1-586.pl ../perlasm/x86asm.pl
(cd asm; $(PERL) sha1-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@)
-s512sse2-out.s: asm/sha512-sse2.pl ../perlasm/x86asm.pl
- (cd asm; $(PERL) sha512-sse2.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@)
+sha256x86-out.s: asm/sha256-586.pl ../perlasm/x86asm.pl
+ (cd asm; $(PERL) sha256-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@)
+sha512x86-out.s: asm/sha512-586.pl ../perlasm/x86asm.pl
+ (cd asm; $(PERL) sha512-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@)
sha1-ia64.s: asm/sha1-ia64.pl
(cd asm; $(PERL) sha1-ia64.pl $(CFLAGS) ) > $@