mirror of
https://gitlab.com/cryptsetup/cryptsetup.git
synced 2025-12-15 21:00:05 +01:00
git-svn-id: https://cryptsetup.googlecode.com/svn/trunk@516 36d66b0a-2a48-0410-832c-cd162a569da5
26 lines
616 B
Makefile
26 lines
616 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
|
|
if CRYPTO_BACKEND_NETTLE
|
|
libcrypto_backend_la_SOURCES += crypto_nettle.c
|
|
endif
|
|
|
|
INCLUDES = -D_GNU_SOURCE -I$(top_srcdir)/lib
|