Makefile 889 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # Makefile
  3. #
  4. # Makefile for Poco NetSSL testsuite
  5. #
  6. include $(POCO_BASE)/build/rules/global
  7. # Note: linking order is important, do not change it.
  8. ifeq ($(POCO_CONFIG),FreeBSD)
  9. SYSLIBS += -lssl -lcrypto -lz
  10. else
  11. ifeq ($(POCO_CONFIG),QNX)
  12. SYSLIBS += -lssl -lcrypto -lz
  13. else
  14. ifeq ($(findstring AIX, $(POCO_CONFIG)), AIX)
  15. SYSLIBS += -lssl_a -lcrypto_a -lz -ldl
  16. else
  17. SYSLIBS += -lssl -lcrypto -lz -ldl
  18. endif
  19. endif
  20. endif
  21. objects = NetSSLTestSuite Driver \
  22. HTTPSClientSessionTest HTTPSClientTestSuite HTTPSServerTest HTTPSServerTestSuite \
  23. HTTPSStreamFactoryTest HTTPSTestServer TCPServerTest TCPServerTestSuite \
  24. WebSocketTest WebSocketTestSuite FTPSClientSessionTest FTPSClientTestSuite \
  25. DialogServer
  26. target = testrunner
  27. target_version = 1
  28. target_libs = PocoNetSSL PocoNet PocoCrypto PocoUtil PocoJSON PocoXML PocoFoundation CppUnit
  29. include $(POCO_BASE)/build/rules/exec