Makefile 735 B

1234567891011121314151617181920212223242526272829
  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. SYSLIBS += -lssl -lcrypto -lz -ldl
  15. endif
  16. endif
  17. objects = NetSSLTestSuite Driver \
  18. HTTPSClientSessionTest HTTPSClientTestSuite HTTPSServerTest HTTPSServerTestSuite \
  19. HTTPSStreamFactoryTest HTTPSTestServer TCPServerTest TCPServerTestSuite \
  20. WebSocketTest WebSocketTestSuite
  21. target = testrunner
  22. target_version = 1
  23. target_libs = PocoNetSSL PocoNet PocoCrypto PocoUtil PocoJSON PocoXML PocoFoundation CppUnit
  24. include $(POCO_BASE)/build/rules/exec