aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/md5/Makefile.in
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-03-07 15:47:35 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-09 11:09:26 +0100
commit57c83b3c3a61796ecd0e2e87109176ac9f8eae30 (patch)
tree9416f821092d1112bfe62202f94d6366f0b82084 /crypto/md5/Makefile.in
parent4f0d5f1849fba056ae2e626dbce976efc4586383 (diff)
downloadopenssl-57c83b3c3a61796ecd0e2e87109176ac9f8eae30.tar.gz
Unified - adapt the generation of md5 assembler to use GENERATE
This gets rid of the BEGINRAW..ENDRAW sections in crypto/md5/build.info. This also moves the assembler generating perl scripts to take the output file name as last command line argument, where necessary. Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'crypto/md5/Makefile.in')
-rw-r--r--crypto/md5/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/md5/Makefile.in b/crypto/md5/Makefile.in
index 625bdc8a10..7e13a0467d 100644
--- a/crypto/md5/Makefile.in
+++ b/crypto/md5/Makefile.in
@@ -40,10 +40,10 @@ lib: $(LIBOBJ)
@touch lib
md5-586.s: asm/md5-586.pl ../perlasm/x86asm.pl
- $(PERL) asm/md5-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
+ $(PERL) asm/md5-586.pl $(PERLASM_SCHEME) $(CFLAGS) $@
md5-x86_64.s: asm/md5-x86_64.pl
- $(PERL) asm/md5-x86_64.pl $(PERLASM_SCHEME) > $@
+ $(PERL) asm/md5-x86_64.pl $(PERLASM_SCHEME) $@
md5-ia64.s: asm/md5-ia64.S
$(CC) $(CFLAGS) -E asm/md5-ia64.S | \