2012-04-23 01:14:34 +00:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# Makefile for Poco Crypto
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
2022-06-19 21:03:49 +02:00
|
|
|
GLOBAL_SYSLIBS := $(SYSLIBS)
|
2023-01-24 15:55:17 +09:00
|
|
|
ifeq ($(findstring AIX, $(POCO_CONFIG)), AIX)
|
|
|
|
SYSLIBS = -lssl_a -lcrypto_a
|
|
|
|
else
|
2022-06-19 21:03:49 +02:00
|
|
|
SYSLIBS = -lssl -lcrypto
|
2023-01-24 15:55:17 +09:00
|
|
|
endif
|
2022-06-19 21:03:49 +02:00
|
|
|
SYSLIBS += $(GLOBAL_SYSLIBS)
|
2012-04-23 01:14:34 +00:00
|
|
|
|
2017-09-21 11:42:54 -05:00
|
|
|
objects = Cipher CipherFactory CipherImpl CipherKey CipherKeyImpl \
|
2022-04-09 18:55:26 +00:00
|
|
|
CryptoException CryptoStream CryptoTransform \
|
2022-04-13 10:02:05 +00:00
|
|
|
ECDSADigestEngine ECKey ECKeyImpl Envelope \
|
2022-04-09 18:55:26 +00:00
|
|
|
EVPCipherImpl EVPPKey KeyPair KeyPairImpl PKCS12Container \
|
2012-05-19 03:04:51 +00:00
|
|
|
RSACipherImpl RSAKey RSAKeyImpl RSADigestEngine DigestEngine \
|
2012-04-23 01:14:34 +00:00
|
|
|
X509Certificate OpenSSLInitializer
|
|
|
|
|
|
|
|
target = PocoCrypto
|
|
|
|
target_version = $(LIBVERSION)
|
|
|
|
target_libs = PocoFoundation
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|