blob: 6cac496fce18418124b97c6687e362a1cc16acd8 (
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
|
INCLUDES = \
-I$(top_srcdir) \
-I$(top_srcdir)/p11-kit \
-I$(srcdir)/cutest \
-DSRCDIR=\"$(srcdir)\" \
-DP11_KIT_FUTURE_UNSTABLE_API
LDADD = \
$(top_builddir)/p11-kit/libp11-kit-testable.la \
$(LTLIBINTL)
noinst_PROGRAMS = \
hash-test \
ptr-array-test \
conf-test \
uri-test \
pin-test \
p11-test \
print-messages
p11_test_SOURCES = \
p11-test.c \
mock-module.c mock-module.h
check-am:
./hash-test
./ptr-array-test
./conf-test
./uri-test
./pin-test
./p11-test
EXTRA_DIST = \
cutest \
files
|