mirror of
https://gitlab.com/cryptsetup/cryptsetup.git
synced 2026-01-05 23:15:34 +01:00
The dm-integrity target is intended to be used for authenticated encryption through LUKS and dm-crypt. It can be used in standalone as well; for this use case there is a simple configuration utility called integritysetup (similar to veritysetup to dm-verity).
14 lines
299 B
Makefile
14 lines
299 B
Makefile
moduledir = $(libdir)/cryptsetup
|
|
|
|
noinst_LTLIBRARIES = libintegrity.la
|
|
|
|
libintegrity_la_CFLAGS = -Wall $(AM_CFLAGS) @CRYPTO_CFLAGS@
|
|
|
|
libintegrity_la_SOURCES = \
|
|
integrity.c \
|
|
integrity.h
|
|
|
|
AM_CPPFLAGS = -include config.h \
|
|
-I$(top_srcdir)/lib \
|
|
-I$(top_srcdir)/lib/crypto_backend
|