build.info 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. LIBS=../../libcrypto
  2. $RC4ASM=rc4_enc.c rc4_skey.c
  3. IF[{- !$disabled{asm} -}]
  4. $RC4ASM_x86=rc4-586.S
  5. $RC4ASM_x86_64=rc4-x86_64.s rc4-md5-x86_64.s
  6. $RC4ASM_s390x=rc4-s390x.s
  7. $RC4ASM_parisc11=rc4-parisc.s
  8. $RC4ASM_parisc20_64=$RC4ASM_parisc11
  9. $RC4ASM_c64xplus=rc4-c64xplus.s
  10. # Now that we have defined all the arch specific variables, use the
  11. # appropriate one, and define the appropriate macros
  12. IF[$RC4ASM_{- $target{asm_arch} -}]
  13. $RC4ASM=$RC4ASM_{- $target{asm_arch} -}
  14. $RC4DEF=RC4_ASM
  15. ENDIF
  16. ENDIF
  17. SOURCE[../../libcrypto]=$RC4ASM
  18. # When all deprecated symbols are removed, libcrypto doesn't export the
  19. # rc4 functions, so we must include them directly in liblegacy.a
  20. IF[{- !$disabled{module} && !$disabled{shared} -}]
  21. SOURCE[../../providers/liblegacy.a]=$RC4ASM
  22. ENDIF
  23. # Implementations are now spread across several libraries, so the defines
  24. # need to be applied to all affected libraries and modules.
  25. DEFINE[../../libcrypto]=$RC4DEF
  26. DEFINE[../../providers/liblegacy.a]=$RC4DEF
  27. GENERATE[rc4-586.S]=asm/rc4-586.pl
  28. DEPEND[rc4-586.S]=../perlasm/x86asm.pl
  29. GENERATE[rc4-x86_64.s]=asm/rc4-x86_64.pl
  30. GENERATE[rc4-md5-x86_64.s]=asm/rc4-md5-x86_64.pl
  31. GENERATE[rc4-parisc.s]=asm/rc4-parisc.pl
  32. GENERATE[rc4-c64xplus.s]=asm/rc4-c64xplus.pl
  33. GENERATE[rc4-s390x.s]=asm/rc4-s390x.pl