4a42e26404
Moved the relevant ciphers into default and restructed headers to allow the move. This removed most of the cases of #ifdef NO_XXX (which are now specified in build.info) Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9482)
34 lines
1.2 KiB
Text
34 lines
1.2 KiB
Text
$DESASM=des_enc.c fcrypt_b.c
|
|
IF[{- !$disabled{asm} -}]
|
|
$DESASM_x86=des-586.s crypt586.s
|
|
$DESASM_ia64=ghash-ia64.s
|
|
$DESASM_sparcv9=des_enc-sparc.S fcrypt_b.c dest4-sparcv9.S
|
|
$DESASM_sparcv8=des_enc-sparc.S fcrypt_b.c
|
|
|
|
# Now that we have defined all the arch specific variables, use the
|
|
# appropriate one
|
|
IF[$DESASM_{- $target{asm_arch} -}]
|
|
$DESASM=$DESASM_{- $target{asm_arch} -}
|
|
ENDIF
|
|
ENDIF
|
|
|
|
LIBS=../../libcrypto
|
|
$COMMON=set_key.c ecb3_enc.c $DESASM
|
|
SOURCE[../../libcrypto]=$COMMON\
|
|
ecb_enc.c cbc_enc.c \
|
|
cfb64enc.c cfb64ede.c cfb_enc.c \
|
|
ofb64ede.c ofb64enc.c ofb_enc.c \
|
|
str2key.c pcbc_enc.c qud_cksm.c rand_key.c \
|
|
fcrypt.c xcbc_enc.c cbc_cksm.c
|
|
SOURCE[../../providers/fips]=$COMMON
|
|
|
|
GENERATE[des_enc-sparc.S]=asm/des_enc.m4
|
|
GENERATE[dest4-sparcv9.S]=asm/dest4-sparcv9.pl $(PERLASM_SCHEME)
|
|
INCLUDE[dest4-sparcv9.o]=..
|
|
|
|
GENERATE[des-586.s]=asm/des-586.pl \
|
|
$(PERLASM_SCHEME) $(LIB_CFLAGS) $(LIB_CPPFLAGS)
|
|
DEPEND[des-586.s]=../perlasm/x86asm.pl ../perlasm/cbc.pl
|
|
GENERATE[crypt586.s]=asm/crypt586.pl \
|
|
$(PERLASM_SCHEME) $(LIB_CFLAGS) $(LIB_CPPFLAGS)
|
|
DEPEND[crypt586.s]=../perlasm/x86asm.pl ../perlasm/cbc.pl
|