Makefile 969 B

1234567891011121314151617181920212223242526272829
  1. #
  2. # Makefile
  3. #
  4. # Makefile for Poco NetSSL_OpenSSL
  5. #
  6. include $(POCO_BASE)/build/rules/global
  7. ifeq ($(findstring AIX, $(POCO_CONFIG)), AIX)
  8. SYSLIBS += -lssl_a -lcrypto_a
  9. else
  10. SYSLIBS += -lssl -lcrypto
  11. endif
  12. objects = AcceptCertificateHandler RejectCertificateHandler ConsoleCertificateHandler \
  13. CertificateHandlerFactory CertificateHandlerFactoryMgr \
  14. Context HTTPSClientSession HTTPSStreamFactory HTTPSSessionInstantiator \
  15. InvalidCertificateHandler KeyConsoleHandler \
  16. KeyFileHandler PrivateKeyFactory PrivateKeyFactoryMgr \
  17. PrivateKeyPassphraseHandler SecureServerSocket SecureServerSocketImpl \
  18. SecureSocketImpl SecureStreamSocket SecureStreamSocketImpl \
  19. SSLException SSLManager Utility VerificationErrorArgs \
  20. X509Certificate Session SecureSMTPClientSession \
  21. FTPSClientSession FTPSStreamFactory
  22. target = PocoNetSSL
  23. target_version = $(LIBVERSION)
  24. target_libs = PocoNet PocoCrypto PocoUtil PocoFoundation
  25. include $(POCO_BASE)/build/rules/lib