blob: 5c9e0e420f982f71cc466bf3594e98a6d11cb8b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
INCLUDES = \
-I$(top_srcdir) \
-I$(top_srcdir)/module \
-Icutest \
-DSRCDIR=\"$(srcdir)\"
noinst_PROGRAMS = \
hash-test \
conf-test
hash_test_LDADD = \
$(top_builddir)/module/libp11-kit-testable.la
conf_test_LDADD = \
$(top_builddir)/module/libp11-kit-testable.la
check-am:
./hash-test
./conf-test
|