mirror of
https://gitlab.com/cryptsetup/cryptsetup.git
synced 2026-01-03 14:10:07 +01:00
- config.h must always be the first file to be included - Use AM_CFLAGS and AM_LDFLAGS consistently and properly. (Modified to disable build without largefile support etc by Milan Broz <gmazyland@gmail.com>)
15 lines
285 B
Makefile
15 lines
285 B
Makefile
moduledir = $(libdir)/cryptsetup
|
|
|
|
noinst_LTLIBRARIES = libtcrypt.la
|
|
|
|
libtcrypt_la_CFLAGS = -Wall $(AM_CFLAGS) @CRYPTO_CFLAGS@
|
|
|
|
libtcrypt_la_SOURCES = \
|
|
tcrypt.c \
|
|
tcrypt.h
|
|
|
|
AM_CPPFLAGS = -include config.h \
|
|
-I$(top_srcdir)/lib \
|
|
-I$(top_srcdir)/lib/crypto_backend
|
|
|