df0cb57ca3
This gets rid of the BEGINRAW..ENDRAW sections in crypto/chacha/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>
13 lines
476 B
Text
13 lines
476 B
Text
LIBS=../../libcrypto
|
|
SOURCE[../../libcrypto]={- $target{chacha_asm_src} -}
|
|
|
|
GENERATE[chacha-x86.s]=asm/chacha-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR)
|
|
GENERATE[chacha-x86_64.s]=asm/chacha-x86_64.pl $(PERLASM_SCHEME)
|
|
GENERATE[chacha-ppc.s]=asm/chacha-ppc.pl $(PERLASM_SCHEME)
|
|
|
|
BEGINRAW[Makefile(unix)]
|
|
##### CHACHA assembler implementations
|
|
|
|
{- $builddir -}/chacha-%.S: {- $sourcedir -}/asm/chacha-%.pl
|
|
CC="$(CC)" $(PERL) $< $(PERLASM_SCHEME) $@
|
|
ENDRAW[Makefile(unix)]
|