mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-22 15:07:26 +01:00
21 lines
417 B
Makefile
21 lines
417 B
Makefile
![]() |
#
|
||
|
# Makefile
|
||
|
#
|
||
|
# $Id$
|
||
|
#
|
||
|
# Makefile for Poco Crypto
|
||
|
#
|
||
|
|
||
|
include $(POCO_BASE)/build/rules/global
|
||
|
|
||
|
SYSLIBS += -lssl -lcrypto
|
||
|
|
||
|
objects = Cipher CipherFactory CipherImpl CipherKey CipherKeyImpl CryptoStream CryptoTransform \
|
||
|
RSACipherImpl RSAKey RSAKeyImpl RSADigestEngine
|
||
|
|
||
|
target = PocoCrypto
|
||
|
target_version = $(LIBVERSION)
|
||
|
target_libs = PocoNetSSL PocoNet PocoFoundation
|
||
|
|
||
|
include $(POCO_BASE)/build/rules/lib
|