mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
26 lines
677 B
Makefile
26 lines
677 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# Makefile for Poco Crypto
|
|
#
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
# see https://github.com/pocoproject/poco/issues/3073
|
|
GLOBAL_SYSLIBS := $(SYSLIBS)
|
|
SYSLIBS = -lssl -lcrypto
|
|
SYSLIBS += $(GLOBAL_SYSLIBS)
|
|
|
|
objects = Cipher CipherFactory CipherImpl CipherKey CipherKeyImpl \
|
|
CryptoException CryptoStream CryptoTransform \
|
|
ECDSADigestEngine ECKey ECKeyImpl Envelope \
|
|
EVPCipherImpl EVPPKey KeyPair KeyPairImpl PKCS12Container \
|
|
RSACipherImpl RSAKey RSAKeyImpl RSADigestEngine DigestEngine \
|
|
X509Certificate OpenSSLInitializer
|
|
|
|
target = PocoCrypto
|
|
target_version = $(LIBVERSION)
|
|
target_libs = PocoFoundation
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|