blob: 430b89ef909490342483430a1b8e7d19bf3971ee (
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
|
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 \
$(LTLIBINTL)
ptr_array_test_LDADD = \
$(top_builddir)/p11-kit/libp11-kit-testable.la \
$(LTLIBINTL)
conf_test_LDADD = \
$(top_builddir)/p11-kit/libp11-kit-testable.la \
$(LTLIBINTL)
uri_test_LDADD = \
$(top_builddir)/p11-kit/libp11-kit-testable.la \
$(LTLIBINTL)
pin_test_LDADD = \
$(top_builddir)/p11-kit/libp11-kit-testable.la \
$(LTLIBINTL)
check-am:
./hash-test
./ptr-array-test
./conf-test
./uri-test
./pin-test
EXTRA_DIST = \
cutest \
files
|