mirror of
https://gitlab.com/cryptsetup/cryptsetup.git
synced 2025-12-24 09:10:07 +01:00
(gcrypt, OpenSSL, NSS and kernel crypto API supported for now). There backends will be used for LUKS and plain passphrase hashing. (Not yet used without following patches). git-svn-id: https://cryptsetup.googlecode.com/svn/trunk@407 36d66b0a-2a48-0410-832c-cd162a569da5
23 lines
537 B
Makefile
23 lines
537 B
Makefile
moduledir = $(libdir)/cryptsetup
|
|
|
|
noinst_LTLIBRARIES = libcrypto_backend.la
|
|
|
|
libcrypto_backend_la_CFLAGS = -Wall @CRYPTO_CFLAGS@
|
|
|
|
libcrypto_backend_la_SOURCES = crypto_backend.h
|
|
|
|
if CRYPTO_BACKEND_GCRYPT
|
|
libcrypto_backend_la_SOURCES += crypto_gcrypt.c
|
|
endif
|
|
if CRYPTO_BACKEND_OPENSSL
|
|
libcrypto_backend_la_SOURCES += crypto_openssl.c
|
|
endif
|
|
if CRYPTO_BACKEND_NSS
|
|
libcrypto_backend_la_SOURCES += crypto_nss.c
|
|
endif
|
|
if CRYPTO_BACKEND_KERNEL
|
|
libcrypto_backend_la_SOURCES += crypto_kernel.c
|
|
endif
|
|
|
|
INCLUDES = -D_GNU_SOURCE -I$(top_srcdir)/lib
|