blob: cde804f6cc3e2f5548d96e315e95706532e686aa (
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
|
INCLUDES = \
-I$(top_srcdir) \
-I$(top_srcdir)/p11-kit \
-I$(srcdir)/cutest \
-DSRCDIR=\"$(srcdir)\" \
-DP11_KIT_FUTURE_UNSTABLE_API
noinst_PROGRAMS = \
hash-test \
ptr-array-test \
conf-test \
uri-test \
pin-test
hash_test_LDADD = \
$(top_builddir)/p11-kit/libp11-kit-testable.la
ptr_array_test_LDADD = \
$(top_builddir)/p11-kit/libp11-kit-testable.la
conf_test_LDADD = \
$(top_builddir)/p11-kit/libp11-kit-testable.la
uri_test_LDADD = \
$(top_builddir)/p11-kit/libp11-kit-testable.la
pin_test_LDADD = \
$(top_builddir)/p11-kit/libp11-kit-testable.la
check-am:
./hash-test
./ptr-array-test
./conf-test
./uri-test
./pin-test
EXTRA_DIST = \
cutest \
files
|