build.info 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. SUBDIRS=exporters
  11. LIBS=libcrypto libssl
  12. INCLUDE[libcrypto]=. include
  13. INCLUDE[libssl]=. include
  14. DEPEND[libssl]=libcrypto
  15. # Empty DEPEND "indices" means the dependencies are expected to be built
  16. # unconditionally before anything else.
  17. DEPEND[]=include/openssl/asn1.h \
  18. include/openssl/asn1t.h \
  19. include/openssl/bio.h \
  20. include/openssl/cmp.h \
  21. include/openssl/cms.h \
  22. include/openssl/conf.h \
  23. include/openssl/core_names.h \
  24. include/openssl/crmf.h \
  25. include/openssl/crypto.h \
  26. include/openssl/ct.h \
  27. include/openssl/err.h \
  28. include/openssl/ess.h \
  29. include/openssl/fipskey.h \
  30. include/openssl/lhash.h \
  31. include/openssl/opensslv.h \
  32. include/openssl/ocsp.h \
  33. include/openssl/pkcs12.h \
  34. include/openssl/pkcs7.h \
  35. include/openssl/safestack.h \
  36. include/openssl/srp.h \
  37. include/openssl/ssl.h \
  38. include/openssl/ui.h \
  39. include/openssl/x509.h \
  40. include/openssl/x509v3.h \
  41. include/openssl/x509_vfy.h \
  42. include/crypto/bn_conf.h include/crypto/dso_conf.h \
  43. include/internal/param_names.h crypto/params_idx.c
  44. GENERATE[include/openssl/asn1.h]=include/openssl/asn1.h.in
  45. GENERATE[include/openssl/asn1t.h]=include/openssl/asn1t.h.in
  46. GENERATE[include/openssl/bio.h]=include/openssl/bio.h.in
  47. GENERATE[include/openssl/cmp.h]=include/openssl/cmp.h.in
  48. GENERATE[include/openssl/cms.h]=include/openssl/cms.h.in
  49. GENERATE[include/openssl/conf.h]=include/openssl/conf.h.in
  50. # include/openssl/configuration.h is generated by configdata.pm
  51. # We still need this information for the FIPS module checksum, but the attribute
  52. # 'skip' ensures that nothing is actually done with it.
  53. GENERATE[include/openssl/configuration.h]{skip}=include/openssl/configuration.h.in
  54. GENERATE[include/openssl/crmf.h]=include/openssl/crmf.h.in
  55. GENERATE[include/openssl/crypto.h]=include/openssl/crypto.h.in
  56. GENERATE[include/openssl/ct.h]=include/openssl/ct.h.in
  57. GENERATE[include/openssl/err.h]=include/openssl/err.h.in
  58. GENERATE[include/openssl/ess.h]=include/openssl/ess.h.in
  59. GENERATE[include/openssl/fipskey.h]=include/openssl/fipskey.h.in
  60. GENERATE[include/openssl/lhash.h]=include/openssl/lhash.h.in
  61. GENERATE[include/openssl/ocsp.h]=include/openssl/ocsp.h.in
  62. GENERATE[include/openssl/opensslv.h]=include/openssl/opensslv.h.in
  63. GENERATE[include/openssl/pkcs12.h]=include/openssl/pkcs12.h.in
  64. GENERATE[include/openssl/pkcs7.h]=include/openssl/pkcs7.h.in
  65. GENERATE[include/openssl/safestack.h]=include/openssl/safestack.h.in
  66. GENERATE[include/openssl/srp.h]=include/openssl/srp.h.in
  67. GENERATE[include/openssl/ssl.h]=include/openssl/ssl.h.in
  68. GENERATE[include/openssl/ui.h]=include/openssl/ui.h.in
  69. GENERATE[include/openssl/x509.h]=include/openssl/x509.h.in
  70. GENERATE[include/openssl/x509v3.h]=include/openssl/x509v3.h.in
  71. GENERATE[include/openssl/x509_vfy.h]=include/openssl/x509_vfy.h.in
  72. GENERATE[include/crypto/bn_conf.h]=include/crypto/bn_conf.h.in
  73. GENERATE[include/crypto/dso_conf.h]=include/crypto/dso_conf.h.in
  74. DEPEND[crypto/params_idx.c \
  75. include/internal/param_names.h \
  76. include/openssl/core_names.h]=util/perl|OpenSSL/paramnames.pm
  77. GENERATE[crypto/params_idx.c]=crypto/params_idx.c.in
  78. GENERATE[include/internal/param_names.h]=include/internal/param_names.h.in
  79. GENERATE[include/openssl/core_names.h]=include/openssl/core_names.h.in
  80. IF[{- defined $target{shared_defflag} -}]
  81. SHARED_SOURCE[libcrypto]=libcrypto.ld
  82. SHARED_SOURCE[libssl]=libssl.ld
  83. GENERATE[libcrypto.ld]=util/libcrypto.num libcrypto
  84. GENERATE[libssl.ld]=util/libssl.num libssl
  85. DEPEND[libcrypto.ld libssl.ld]=configdata.pm util/perl/OpenSSL/Ordinals.pm
  86. ENDIF
  87. IF[{- $config{target} =~ /^(?:Cygwin|mingw|VC-|BC-)/ -}]
  88. GENERATE[libcrypto.rc]=util/mkrc.pl libcrypto
  89. GENERATE[libssl.rc]=util/mkrc.pl libssl
  90. DEPEND[libcrypto.rc libssl.rc]=configdata.pm
  91. SHARED_SOURCE[libcrypto]=libcrypto.rc
  92. SHARED_SOURCE[libssl]=libssl.rc
  93. ENDIF
  94. # This file sets the build directory up for CMake inclusion
  95. GENERATE[OpenSSLConfig.cmake]=exporters/cmake/OpenSSLConfig.cmake.in
  96. DEPEND[OpenSSLConfig.cmake]=builddata.pm
  97. GENERATE[OpenSSLConfigVersion.cmake]=exporters/cmake/OpenSSLConfigVersion.cmake.in
  98. DEPEND[OpenSSLConfigVersion.cmake]=builddata.pm
  99. DEPEND[OpenSSLConfigVersion.cmake]=OpenSSLConfig.cmake
  100. DEPEND[""]=OpenSSLConfigVersion.cmake
  101. # This file sets the build directory up for pkg-config
  102. GENERATE[libcrypto.pc]=exporters/pkg-config/libcrypto.pc.in
  103. DEPEND[libcrypto.pc]=builddata.pm
  104. GENERATE[libssl.pc]=exporters/pkg-config/libssl.pc.in
  105. DEPEND[libssl.pc]=builddata.pm
  106. GENERATE[openssl.pc]=exporters/pkg-config/openssl.pc.in
  107. DEPEND[openssl.pc]=builddata.pm
  108. DEPEND[openssl.pc]=libcrypto.pc libssl.pc
  109. GENERATE[builddata.pm]=util/mkinstallvars.pl \
  110. PREFIX=. BINDIR=apps LIBDIR= INCLUDEDIR=include APPLINKDIR=ms \
  111. ENGINESDIR=engines MODULESDIR=providers \
  112. "VERSION=$(VERSION)" "LDLIBS=$(LIB_EX_LIBS)"
  113. DEPEND[""]=openssl.pc