build.info 1014 B

123456789101112131415161718192021222324252627282930313233
  1. LIBS=../../libcrypto
  2. $WPASM=wp_block.c
  3. IF[{- !$disabled{asm} -}]
  4. IF[{- $config{processor} ne "386" -}]
  5. $WPASM_x86=wp_block.c wp-mmx.S
  6. $WPDEF_x86=WHIRLPOOL_ASM
  7. ENDIF
  8. $WPASM_x86_64=wp-x86_64.s
  9. $WPDEF_x86_64=WHIRLPOOL_ASM
  10. # Now that we have defined all the arch specific variables, use the
  11. # appropriate one, and define the appropriate macros
  12. IF[$WPASM_{- $target{asm_arch} -}]
  13. $WPASM=$WPASM_{- $target{asm_arch} -}
  14. $WPDEF=$WPDEF_{- $target{asm_arch} -}
  15. ENDIF
  16. ENDIF
  17. SOURCE[../../libcrypto]=wp_dgst.c $WPASM
  18. DEFINE[../../libcrypto]=$WPDEF
  19. # When all deprecated symbols are removed, libcrypto doesn't export the
  20. # WHIRLPOOL functions, so we must include them directly in liblegacy.a
  21. IF[{- $disabled{'deprecated-3.0'} && !$disabled{module} && !$disabled{shared} -}]
  22. SOURCE[../../providers/liblegacy.a]=wp_dgst.c $WPASM
  23. DEFINE[../../providers/liblegacy.a]=$WPDEF
  24. ENDIF
  25. GENERATE[wp-mmx.S]=asm/wp-mmx.pl
  26. DEPEND[wp-mmx.S]=../perlasm/x86asm.pl
  27. GENERATE[wp-x86_64.s]=asm/wp-x86_64.pl