build.info 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  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/crypto/bn_conf.h include/crypto/dso_conf.h \
  12. doc/man7/openssl_user_macros.pod
  13. GENERATE[include/openssl/configuration.h]=include/openssl/configuration.h.in
  14. GENERATE[include/openssl/opensslv.h]=include/openssl/opensslv.h.in
  15. GENERATE[include/crypto/bn_conf.h]=include/crypto/bn_conf.h.in
  16. GENERATE[include/crypto/dso_conf.h]=include/crypto/dso_conf.h.in
  17. GENERATE[doc/man7/openssl_user_macros.pod]=doc/man7/openssl_user_macros.pod.in
  18. IF[{- defined $target{shared_defflag} -}]
  19. SHARED_SOURCE[libcrypto]=libcrypto.ld
  20. SHARED_SOURCE[libssl]=libssl.ld
  21. GENERATE[libcrypto.ld]=util/libcrypto.num libcrypto
  22. GENERATE[libssl.ld]=util/libssl.num libssl
  23. ENDIF
  24. IF[{- $config{target} =~ /^(?:Cygwin|mingw|VC-)/ -}]
  25. GENERATE[libcrypto.rc]=util/mkrc.pl libcrypto
  26. GENERATE[libssl.rc]=util/mkrc.pl libssl
  27. SHARED_SOURCE[libcrypto]=libcrypto.rc
  28. SHARED_SOURCE[libssl]=libssl.rc
  29. ENDIF