build.info 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Note that some of these directories are filtered in Configure. Look for
  2. # %skipdir there for further explanations.
  3. SUBDIRS=crypto ssl apps test util tools fuzz engines providers doc
  4. LIBS=libcrypto libssl
  5. INCLUDE[libcrypto]=. include
  6. INCLUDE[libssl]=. include
  7. DEPEND[libssl]=libcrypto
  8. # Empty DEPEND "indices" means the dependencies are expected to be built
  9. # unconditionally before anything else.
  10. DEPEND[]=include/openssl/configuration.h include/openssl/opensslv.h \
  11. include/openssl/fipskey.h \
  12. include/crypto/bn_conf.h include/crypto/dso_conf.h \
  13. doc/man7/openssl_user_macros.pod
  14. GENERATE[include/openssl/configuration.h]=include/openssl/configuration.h.in
  15. GENERATE[include/openssl/opensslv.h]=include/openssl/opensslv.h.in
  16. GENERATE[include/openssl/fipskey.h]=include/openssl/fipskey.h.in
  17. GENERATE[include/crypto/bn_conf.h]=include/crypto/bn_conf.h.in
  18. GENERATE[include/crypto/dso_conf.h]=include/crypto/dso_conf.h.in
  19. GENERATE[doc/man7/openssl_user_macros.pod]=doc/man7/openssl_user_macros.pod.in
  20. IF[{- defined $target{shared_defflag} -}]
  21. SHARED_SOURCE[libcrypto]=libcrypto.ld
  22. SHARED_SOURCE[libssl]=libssl.ld
  23. GENERATE[libcrypto.ld]=util/libcrypto.num libcrypto
  24. GENERATE[libssl.ld]=util/libssl.num libssl
  25. ENDIF
  26. IF[{- $config{target} =~ /^(?:Cygwin|mingw|VC-)/ -}]
  27. GENERATE[libcrypto.rc]=util/mkrc.pl libcrypto
  28. GENERATE[libssl.rc]=util/mkrc.pl libssl
  29. SHARED_SOURCE[libcrypto]=libcrypto.rc
  30. SHARED_SOURCE[libssl]=libssl.rc
  31. ENDIF