Unified - adapt the generation of whirlpool assembler to use GENERATE
authorRichard Levitte <levitte@openssl.org>
Mon, 7 Mar 2016 14:50:21 +0000 (15:50 +0100)
committerRichard Levitte <levitte@openssl.org>
Wed, 9 Mar 2016 10:09:26 +0000 (11:09 +0100)
This gets rid of the BEGINRAW..ENDRAW sections in crypto/whrlpool/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>
crypto/whrlpool/Makefile.in
crypto/whrlpool/asm/wp-mmx.pl
crypto/whrlpool/build.info

index a1be9fef93ed18eb3c94142e480add52acb16133..fa51f08f30607bb74b16e8d5fd11043fcaad4ad4 100644 (file)
@@ -40,10 +40,10 @@ lib:        $(LIBOBJ)
        @touch lib
 
 wp-mmx.s:      asm/wp-mmx.pl ../perlasm/x86asm.pl
-       $(PERL) asm/wp-mmx.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) $@
+       $(PERL) asm/wp-mmx.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) $@
 
 wp-x86_64.s: asm/wp-x86_64.pl
-       $(PERL) asm/wp-x86_64.pl $(PERLASM_SCHEME) $@
+       $(PERL) asm/wp-x86_64.pl $(PERLASM_SCHEME) $@
 
 $(LIBOBJ): $(LIBSRC)
 
index 7725951d6b711c56a4b3daaeba70ff120136d053..a71a29f522ac63a802a9a4d854e87d1292a7c77e 100644 (file)
@@ -49,6 +49,9 @@ $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1;
 push(@INC,"${dir}","${dir}../../perlasm");
 require "x86asm.pl";
 
+$output=pop;
+open STDOUT,">$output";
+
 &asm_init($ARGV[0],"wp-mmx.pl");
 
 sub L()  { &data_byte(@_); }
@@ -493,3 +496,5 @@ for($i=0;$i<8;$i++) {
 
 &function_end_B("whirlpool_block_mmx");
 &asm_finish(); 
+
+close STDOUT;
index 5cf6000cb7e5b124b9385fad3f7da4e6b4494667..ff9d052d105c0957ac8bd0e2822d065b882ab57a 100644 (file)
@@ -1,10 +1,7 @@
 LIBS=../../libcrypto
 SOURCE[../../libcrypto]=wp_dgst.c {- $target{wp_asm_src} -}
 
-BEGINRAW[Makefile]
-{- $builddir -}/wp-mmx.s:      {- $sourcedir -}/asm/wp-mmx.pl {- $sourcetop -}/crypto/perlasm/x86asm.pl
-       CC="$(CC)" $(PERL) {- $sourcedir -}/asm/wp-mmx.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
+GENERATE[wp-mmx.s]=asm/wp-mmx.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR)
+DEPEND[wp-mmx.s]=../perlasm/x86asm.pl
 
-{- $builddir -}/wp-x86_64.s: {- $sourcedir -}/asm/wp-x86_64.pl
-       CC="$(CC)" $(PERL) {- $sourcedir -}/asm/wp-x86_64.pl $(PERLASM_SCHEME) > $@
-ENDRAW[Makefile]
+GENERATE[wp-x86_64.s]=asm/wp-x86_64.pl $(PERLASM_SCHEME)