build.info 832 B

12345678910111213141516171819202122232425262728293031
  1. # We make separate GOAL variables for each algorithm, to make it easy to
  2. # switch each to the Legacy provider when needed.
  3. $DH_GOAL=../../libdefault.a ../../libfips.a
  4. $ECDH_GOAL=../../libdefault.a ../../libfips.a
  5. $ECX_GOAL=../../libdefault.a ../../libfips.a
  6. $KDF_GOAL=../../libdefault.a ../../libfips.a
  7. IF[{- !$disabled{dh} -}]
  8. SOURCE[$DH_GOAL]=dh_exch.c
  9. ENDIF
  10. IF[{- !$disabled{asm} -}]
  11. $ECDEF_s390x=S390X_EC_ASM
  12. # Now that we have defined all the arch specific variables, use the
  13. # appropriate one, and define the appropriate macros
  14. IF[$ECASM_{- $target{asm_arch} -}]
  15. $ECDEF=$ECDEF_{- $target{asm_arch} -}
  16. ENDIF
  17. ENDIF
  18. IF[{- !$disabled{ec} -}]
  19. IF[{- !$disabled{ecx} -}]
  20. SOURCE[$ECX_GOAL]=ecx_exch.c
  21. DEFINE[$ECX_GOAL]=$ECDEF
  22. ENDIF
  23. SOURCE[$ECDH_GOAL]=ecdh_exch.c
  24. ENDIF
  25. SOURCE[$KDF_GOAL]=kdf_exch.c