blob: ce6dd2a26eca7079d87247a6153cb9dd4a2e2932 (
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
|
NULL =
SUBDIRS = . tests
incdir = $(includedir)/p11-kit-1/p11-kit
inc_HEADERS = \
pkcs11.h \
$(NULL)
noinst_LTLIBRARIES = \
libp11-compat.la \
libp11-library.la \
$(NULL)
libp11_compat_la_SOURCES = \
compat.c compat.h \
$(NULL)
libp11_library_la_SOURCES = \
attrs.c attrs.h \
array.c array.h \
buffer.c buffer.h \
debug.c debug.h \
dict.c dict.h \
library.c library.h \
pkcs11.h pkcs11x.h \
$(NULL)
|