mirror of
https://github.com/openssl/openssl.git
synced 2024-12-03 05:41:46 +08:00
a1c8befd66
Since the arguments are now generated in the build file templates, they should be removed from the build.info files. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9884)
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
LIBS=../../libcrypto
|
|
|
|
$CHACHAASM=chacha_enc.c
|
|
IF[{- !$disabled{asm} -}]
|
|
$CHACHAASM_x86=chacha-x86.s
|
|
$CHACHAASM_x86_64=chacha-x86_64.s
|
|
|
|
$CHACHAASM_ia64=chacha-ia64.S
|
|
|
|
$CHACHAASM_s390x=chacha-s390x.S
|
|
|
|
$CHACHAASM_armv4=chacha-armv4.S
|
|
$CHACHAASM_aarch64=chacha-armv8.S
|
|
|
|
$CHACHAASM_ppc32=chacha-ppc.s
|
|
$CHACHAASM_ppc64=$CHACHAASM_ppc32
|
|
|
|
$CHACHAASM_c64xplus=chacha-c64xplus.s
|
|
|
|
# Now that we have defined all the arch specific variables, use the
|
|
# appropriate one
|
|
IF[$CHACHAASM_{- $target{asm_arch} -}]
|
|
$CHACHAASM=$CHACHAASM_{- $target{asm_arch} -}
|
|
ENDIF
|
|
ENDIF
|
|
|
|
SOURCE[../../libcrypto]=$CHACHAASM
|
|
|
|
GENERATE[chacha-x86.s]=asm/chacha-x86.pl
|
|
GENERATE[chacha-x86_64.s]=asm/chacha-x86_64.pl
|
|
GENERATE[chacha-ppc.s]=asm/chacha-ppc.pl
|
|
GENERATE[chacha-armv4.S]=asm/chacha-armv4.pl
|
|
INCLUDE[chacha-armv4.o]=..
|
|
GENERATE[chacha-armv8.S]=asm/chacha-armv8.pl
|
|
INCLUDE[chacha-armv8.o]=..
|
|
INCLUDE[chacha-s390x.o]=..
|
|
GENERATE[chacha-c64xplus.S]=asm/chacha-c64xplus.pl
|
|
GENERATE[chacha-s390x.S]=asm/chacha-s390x.pl
|
|
GENERATE[chacha-ia64.S]=asm/chacha-ia64.pl
|