2012-04-23 03:14:34 +02:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# Makefile for Poco Crypto
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
|
|
|
SYSLIBS += -lssl -lcrypto
|
|
|
|
|
2017-09-21 18:42:54 +02:00
|
|
|
objects = Cipher CipherFactory CipherImpl CipherKey CipherKeyImpl \
|
|
|
|
CryptoException CryptoStream CryptoTransform ECDSADigestEngine \
|
|
|
|
ECKey ECKeyImpl EVPPKey KeyPair KeyPairImpl PKCS12Container \
|
2012-05-19 05:04:51 +02:00
|
|
|
RSACipherImpl RSAKey RSAKeyImpl RSADigestEngine DigestEngine \
|
2012-04-23 03:14:34 +02:00
|
|
|
X509Certificate OpenSSLInitializer
|
|
|
|
|
|
|
|
target = PocoCrypto
|
|
|
|
target_version = $(LIBVERSION)
|
|
|
|
target_libs = PocoFoundation
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|