blob: 6103485e7fabbdeeda0c914040795bd37e346587 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
INCLUDES = \
-DPKCS11_CONFIG_FILE=\"$(sysconfdir)/pkcs11.conf\" \
-DPKCS11_CONFIG_LIBS=\"$(sysconfdir)/pkcs11/libs\"
MODULE_SRCS = \
conf.c conf.h \
hash.c hash.h \
p11-kit-lib.c \
p11-kit-proxy.c \
p11-kit-private.h p11-kit.h
lib_LTLIBRARIES = \
libp11-kit.la
noinst_LTLIBRARIES = \
libp11-kit-testable.la
libp11_kit_la_LDFLAGS = \
-no-undefined -export-symbols-regex 'C_GetFunctionList'
libp11_kit_la_SOURCES = $(MODULE_SRCS)
libp11_kit_testable_la_LDFLAGS = \
-no-undefined
libp11_kit_testable_la_SOURCES = $(MODULE_SRCS)
EXTRA_DIST = \
pkcs11.h
|