summaryrefslogtreecommitdiff
path: root/common/Makefile.am
blob: a06a7a43e80f46454e5087162f6f555b298327e7 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48

include $(top_srcdir)/build/Makefile.decl

SUBDIRS = . tests

incdir = $(includedir)/p11-kit-1/p11-kit

inc_HEADERS = \
	pkcs11.h \
	pkcs11x.h \
	$(NULL)

noinst_LTLIBRARIES = \
	libp11-common.la \
	libp11-library.la \
	libp11-test.la \
	libp11-tool.la \
	$(NULL)

libp11_common_la_SOURCES = \
	argv.c argv.h \
	attrs.c attrs.h \
	array.c array.h \
	buffer.c buffer.h \
	compat.c compat.h \
	constants.c constants.h \
	debug.c debug.h \
	dict.c dict.h \
	hash.c hash.h \
	lexer.c lexer.h \
	message.c message.h \
	path.c path.h \
	pkcs11.h pkcs11x.h pkcs11i.h \
	url.c url.h \
	$(NULL)

libp11_library_la_SOURCES = \
	library.c library.h \
	$(NULL)

libp11_test_la_SOURCES = \
	mock.c mock.h \
	test.c test.h \
	$(NULL)

libp11_tool_la_SOURCES = \
	tool.c tool.h \
	$(NULL)