2012-04-23 03:14:34 +02:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
2012-05-19 05:04:51 +02:00
|
|
|
# $Id: //poco/1.4/Crypto/Makefile#2 $
|
2012-04-23 03:14:34 +02:00
|
|
|
#
|
|
|
|
# Makefile for Poco Crypto
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
|
|
|
SYSLIBS += -lssl -lcrypto
|
|
|
|
|
|
|
|
objects = Cipher CipherFactory CipherImpl CipherKey CipherKeyImpl CryptoStream CryptoTransform \
|
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
|