build.info 737 B

1234567891011121314151617181920212223242526
  1. LIBS=../../libcrypto
  2. $CASTASM=c_enc.c
  3. # CAST assembly source is not PIC
  4. IF[{- !$disabled{asm} && $disabled{pic} -}]
  5. $CASTASM_x86=cast-586.S
  6. # Now that we have defined all the arch specific variables, use the
  7. # appropriate one
  8. IF[$CASTASM_{- $target{asm_arch} -}]
  9. $CASTASM=$CASTASM_{- $target{asm_arch} -}
  10. ENDIF
  11. ENDIF
  12. $ALL=c_skey.c c_ecb.c $CASTASM c_cfb64.c c_ofb64.c
  13. SOURCE[../../libcrypto]=$ALL
  14. # When all deprecated symbols are removed, libcrypto doesn't export the
  15. # cast functions, so we must include them directly in liblegacy.a
  16. IF[{- $disabled{'deprecated-3.0'} -}]
  17. SOURCE[../../providers/liblegacy.a]=$ALL
  18. ENDIF
  19. GENERATE[cast-586.S]=asm/cast-586.pl
  20. DEPEND[cast-586.S]=../perlasm/x86asm.pl ../perlasm/cbc.pl