Makefile 892 B

123456789101112131415161718192021222324252627
  1. #
  2. # Makefile
  3. #
  4. # $Id: //poco/Main/template/library.make#2 $
  5. #
  6. # Makefile for Poco NetSSL_OpenSSL
  7. #
  8. include $(POCO_BASE)/build/rules/global
  9. SYSLIBS += -lssl -lcrypto
  10. objects = AcceptCertificateHandler RejectCertificateHandler ConsoleCertificateHandler \
  11. CertificateHandlerFactory CertificateHandlerFactoryMgr \
  12. Context HTTPSClientSession HTTPSStreamFactory HTTPSSessionInstantiator \
  13. InvalidCertificateHandler KeyConsoleHandler \
  14. KeyFileHandler PrivateKeyFactory PrivateKeyFactoryMgr \
  15. PrivateKeyPassphraseHandler SecureServerSocket SecureServerSocketImpl \
  16. SecureSocketImpl SecureStreamSocket SecureStreamSocketImpl \
  17. SSLException SSLManager Utility VerificationErrorArgs \
  18. X509Certificate Session SecureSMTPClientSession
  19. target = PocoNetSSL
  20. target_version = $(LIBVERSION)
  21. target_libs = PocoNet PocoCrypto PocoUtil PocoFoundation
  22. include $(POCO_BASE)/build/rules/lib