2012-04-23 03:14:34 +02:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# Makefile for Poco Crypto testsuite
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
2012-07-07 18:03:21 +02:00
|
|
|
# Note: linking order is important, do not change it.
|
2012-09-26 04:51:43 +02:00
|
|
|
ifeq ($(POCO_CONFIG),FreeBSD)
|
|
|
|
SYSLIBS += -lssl -lcrypto -lz
|
|
|
|
else
|
2019-08-11 09:58:47 +02:00
|
|
|
ifeq ($(POCO_CONFIG),QNX)
|
|
|
|
SYSLIBS += -lssl -lcrypto -lz
|
|
|
|
else
|
2023-01-24 07:55:17 +01:00
|
|
|
ifeq ($(findstring AIX, $(POCO_CONFIG)), AIX)
|
|
|
|
SYSLIBS += -lssl_a -lcrypto_a -lz -ldl
|
|
|
|
else
|
2023-12-09 21:16:24 +01:00
|
|
|
ifeq ($(POCO_CONFIG),Darwin)
|
|
|
|
SYSLIBS += -lssl -lcrypto -lz
|
|
|
|
else
|
2012-07-07 18:03:21 +02:00
|
|
|
SYSLIBS += -lssl -lcrypto -lz -ldl
|
2023-12-09 21:16:24 +01:00
|
|
|
endif # Darwin
|
|
|
|
endif # AIX
|
|
|
|
endif # QNX
|
|
|
|
endif # FreeBSD
|
2012-04-23 03:14:34 +02:00
|
|
|
|
|
|
|
objects = CryptoTestSuite Driver \
|
2017-09-20 05:04:32 +02:00
|
|
|
CryptoTest DigestEngineTest ECTest \
|
2022-04-13 12:02:05 +02:00
|
|
|
EVPTest RSATest PKCS12ContainerTest \
|
|
|
|
EnvelopeTest
|
2012-04-23 03:14:34 +02:00
|
|
|
|
|
|
|
target = testrunner
|
|
|
|
target_version = 1
|
|
|
|
target_libs = PocoCrypto PocoFoundation CppUnit
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|