wanproxy/crypto/lib.mk

18 lines
395 B
Makefile
Raw Permalink Normal View History

2015-08-31 12:01:44 +00:00
VPATH+= ${TOPDIR}/crypto
SRCS+= crypto_encryption.cc
SRCS+= crypto_hash.cc
SRCS+= crypto_mac.cc
SRCS+= crypto_encryption_openssl.cc
SRCS+= crypto_hash_openssl.cc
SRCS+= crypto_mac_openssl.cc
SRCS+= crypto_random_openssl.cc
# Apple has decided to deprecate all of OpenSSL in Mac OS X ~Lion~. Brilliant.
ifeq "${OSNAME}" "Darwin"
CFLAGS+= -Wno-deprecated-declarations
endif
LDADD+= -lcrypto