build.info 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. # Note that some of these directories are filtered in Configure. Look for
  2. # %skipdir there for further explanations.
  3. SUBDIRS=crypto ssl apps util tools fuzz providers doc
  4. IF[{- !$disabled{tests} -}]
  5. SUBDIRS=test
  6. ENDIF
  7. IF[{- !$disabled{'deprecated-3.0'} -}]
  8. SUBDIRS=engines
  9. ENDIF
  10. LIBS=libcrypto libssl
  11. INCLUDE[libcrypto]=. include
  12. INCLUDE[libssl]=. include
  13. DEPEND[libssl]=libcrypto
  14. # Empty DEPEND "indices" means the dependencies are expected to be built
  15. # unconditionally before anything else.
  16. DEPEND[]=include/openssl/asn1.h \
  17. include/openssl/asn1t.h \
  18. include/openssl/bio.h \
  19. include/openssl/cmp.h \
  20. include/openssl/cms.h \
  21. include/openssl/conf.h \
  22. include/openssl/crmf.h \
  23. include/openssl/crypto.h \
  24. include/openssl/ct.h \
  25. include/openssl/err.h \
  26. include/openssl/ess.h \
  27. include/openssl/fipskey.h \
  28. include/openssl/lhash.h \
  29. include/openssl/opensslv.h \
  30. include/openssl/ocsp.h \
  31. include/openssl/pkcs12.h \
  32. include/openssl/pkcs7.h \
  33. include/openssl/safestack.h \
  34. include/openssl/srp.h \
  35. include/openssl/ssl.h \
  36. include/openssl/ui.h \
  37. include/openssl/x509.h \
  38. include/openssl/x509v3.h \
  39. include/openssl/x509_vfy.h \
  40. include/crypto/bn_conf.h include/crypto/dso_conf.h
  41. GENERATE[include/openssl/asn1.h]=include/openssl/asn1.h.in
  42. GENERATE[include/openssl/asn1t.h]=include/openssl/asn1t.h.in
  43. GENERATE[include/openssl/bio.h]=include/openssl/bio.h.in
  44. GENERATE[include/openssl/cmp.h]=include/openssl/cmp.h.in
  45. GENERATE[include/openssl/cms.h]=include/openssl/cms.h.in
  46. GENERATE[include/openssl/conf.h]=include/openssl/conf.h.in
  47. # include/openssl/configuration.h is generated by configdata.pm
  48. # We still need this information for the FIPS module checksum, but the attribute
  49. # 'skip' ensures that nothing is actually done with it.
  50. GENERATE[include/openssl/configuration.h]{skip}=include/openssl/configuration.h.in
  51. GENERATE[include/openssl/crmf.h]=include/openssl/crmf.h.in
  52. GENERATE[include/openssl/crypto.h]=include/openssl/crypto.h.in
  53. GENERATE[include/openssl/ct.h]=include/openssl/ct.h.in
  54. GENERATE[include/openssl/err.h]=include/openssl/err.h.in
  55. GENERATE[include/openssl/ess.h]=include/openssl/ess.h.in
  56. GENERATE[include/openssl/fipskey.h]=include/openssl/fipskey.h.in
  57. GENERATE[include/openssl/lhash.h]=include/openssl/lhash.h.in
  58. GENERATE[include/openssl/ocsp.h]=include/openssl/ocsp.h.in
  59. GENERATE[include/openssl/opensslv.h]=include/openssl/opensslv.h.in
  60. GENERATE[include/openssl/pkcs12.h]=include/openssl/pkcs12.h.in
  61. GENERATE[include/openssl/pkcs7.h]=include/openssl/pkcs7.h.in
  62. GENERATE[include/openssl/safestack.h]=include/openssl/safestack.h.in
  63. GENERATE[include/openssl/srp.h]=include/openssl/srp.h.in
  64. GENERATE[include/openssl/ssl.h]=include/openssl/ssl.h.in
  65. GENERATE[include/openssl/ui.h]=include/openssl/ui.h.in
  66. GENERATE[include/openssl/x509.h]=include/openssl/x509.h.in
  67. GENERATE[include/openssl/x509v3.h]=include/openssl/x509v3.h.in
  68. GENERATE[include/openssl/x509_vfy.h]=include/openssl/x509_vfy.h.in
  69. GENERATE[include/crypto/bn_conf.h]=include/crypto/bn_conf.h.in
  70. GENERATE[include/crypto/dso_conf.h]=include/crypto/dso_conf.h.in
  71. IF[{- defined $target{shared_defflag} -}]
  72. SHARED_SOURCE[libcrypto]=libcrypto.ld
  73. SHARED_SOURCE[libssl]=libssl.ld
  74. GENERATE[libcrypto.ld]=util/libcrypto.num libcrypto
  75. GENERATE[libssl.ld]=util/libssl.num libssl
  76. DEPEND[libcrypto.ld libssl.ld]=configdata.pm util/perl/OpenSSL/Ordinals.pm
  77. ENDIF
  78. IF[{- $config{target} =~ /^(?:Cygwin|mingw|VC-|BC-)/ -}]
  79. GENERATE[libcrypto.rc]=util/mkrc.pl libcrypto
  80. GENERATE[libssl.rc]=util/mkrc.pl libssl
  81. DEPEND[libcrypto.rc libssl.rc]=configdata.pm
  82. SHARED_SOURCE[libcrypto]=libcrypto.rc
  83. SHARED_SOURCE[libssl]=libssl.rc
  84. ENDIF