summaryrefslogtreecommitdiffstats
path: root/crypto/sha
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-02-06 13:23:34 +0000
committerAndy Polyakov <appro@openssl.org>2005-02-06 13:23:34 +0000
commit67ea999d4a0b7873b3d88a48773eeb1bb59799a2 (patch)
tree96e830c0dc2f05907bbcf3579fa06dda96bde181 /crypto/sha
parente1892f23707393d12522c3a586e75b8237038f2f (diff)
This patch was "ignited" by OpenBSD 3>=4 support. They've switched to ELF
and GNU binutils, but kept BSD make... And I took the opportunity to unify other targets to this common least denominator...
Diffstat (limited to 'crypto/sha')
-rw-r--r--crypto/sha/Makefile.ssl16
1 files changed, 8 insertions, 8 deletions
diff --git a/crypto/sha/Makefile.ssl b/crypto/sha/Makefile.ssl
index 16a4351b01..71adb3c38c 100644
--- a/crypto/sha/Makefile.ssl
+++ b/crypto/sha/Makefile.ssl
@@ -49,14 +49,14 @@ lib: $(LIBOBJ)
@touch lib
# ELF
-asm/sx86-elf.s: asm/sha1-586.pl ../perlasm/x86asm.pl
+sx86-elf.s: asm/sha1-586.pl ../perlasm/x86asm.pl
(cd asm; $(PERL) sha1-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)
-asm/s512sse2-elf.s: asm/sha512-sse2.pl ../perlasm/x86asm.pl
+s512sse2-elf.s: asm/sha512-sse2.pl ../perlasm/x86asm.pl
(cd asm; $(PERL) sha512-sse2.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)
# COFF
-asm/sx86-cof.s: asm/sha1-586.pl ../perlasm/x86asm.pl
+sx86-cof.s: asm/sha1-586.pl ../perlasm/x86asm.pl
(cd asm; $(PERL) sha1-586.pl coff $(CFLAGS) $(PROCESSOR) > ../$@)
-asm/s512sse2-cof.s: asm/sha512-sse2.pl ../perlasm/x86asm.pl
+s512sse2-cof.s: asm/sha512-sse2.pl ../perlasm/x86asm.pl
(cd asm; $(PERL) sha512-sse2.pl coff $(CFLAGS) $(PROCESSOR) > ../$@)
# a.out
sx86-out.s: asm/sha1-586.pl ../perlasm/x86asm.pl
@@ -64,11 +64,11 @@ sx86-out.s: asm/sha1-586.pl ../perlasm/x86asm.pl
s512sse2-out.s: asm/sha512-sse2.pl ../perlasm/x86asm.pl
(cd asm; $(PERL) sha512-sse2.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@)
-asm/sha1-ia64.s: asm/sha1-ia64.pl
+sha1-ia64.s: asm/sha1-ia64.pl
(cd asm; $(PERL) sha1-ia64.pl $(CFLAGS) ) > $@
-asm/sha256-ia64.s: asm/sha512-ia64.pl
+sha256-ia64.s: asm/sha512-ia64.pl
(cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS))
-asm/sha512-ia64.s: asm/sha512-ia64.pl
+sha512-ia64.s: asm/sha512-ia64.pl
(cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS))
files:
@@ -103,7 +103,7 @@ dclean:
mv -f Makefile.new $(MAKEFILE)
clean:
- rm -f asm/sx86unix.cpp asm/*.s asm/*.o *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
+ rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
# DO NOT DELETE THIS LINE -- make depend depends on it.