2012-04-29 18:52:25 +00:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# Makefile for Poco NetSSL testsuite
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
2012-07-07 16:03:21 +00:00
|
|
|
# Note: linking order is important, do not change it.
|
2012-09-26 02:51:43 +00:00
|
|
|
ifeq ($(POCO_CONFIG),FreeBSD)
|
|
|
|
SYSLIBS += -lssl -lcrypto -lz
|
|
|
|
else
|
2019-08-11 16:58:47 +09:00
|
|
|
ifeq ($(POCO_CONFIG),QNX)
|
|
|
|
SYSLIBS += -lssl -lcrypto -lz
|
|
|
|
else
|
2023-01-24 15:55:17 +09:00
|
|
|
ifeq ($(findstring AIX, $(POCO_CONFIG)), AIX)
|
|
|
|
SYSLIBS += -lssl_a -lcrypto_a -lz -ldl
|
|
|
|
else
|
2012-07-07 16:03:21 +00:00
|
|
|
SYSLIBS += -lssl -lcrypto -lz -ldl
|
2012-09-26 02:51:43 +00:00
|
|
|
endif
|
2019-08-11 16:58:47 +09:00
|
|
|
endif
|
2023-01-24 15:55:17 +09:00
|
|
|
endif
|
2012-04-29 18:52:25 +00:00
|
|
|
|
|
|
|
objects = NetSSLTestSuite Driver \
|
|
|
|
HTTPSClientSessionTest HTTPSClientTestSuite HTTPSServerTest HTTPSServerTestSuite \
|
2018-05-08 16:47:30 -05:00
|
|
|
HTTPSStreamFactoryTest HTTPSTestServer TCPServerTest TCPServerTestSuite \
|
2020-01-23 11:57:28 +01:00
|
|
|
WebSocketTest WebSocketTestSuite FTPSClientSessionTest FTPSClientTestSuite \
|
|
|
|
DialogServer
|
2012-04-29 18:52:25 +00:00
|
|
|
|
|
|
|
target = testrunner
|
|
|
|
target_version = 1
|
2015-03-29 10:20:12 -05:00
|
|
|
target_libs = PocoNetSSL PocoNet PocoCrypto PocoUtil PocoJSON PocoXML PocoFoundation CppUnit
|
2012-04-29 18:52:25 +00:00
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|