blob: 3b6b9864780bcc574ba5912dad90b57a1826d21f (
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
|
include $(top_srcdir)/build/Makefile.tests
NULL =
COMMON = $(top_srcdir)/common
INCLUDES = \
-I$(top_srcdir) \
-I$(srcdir)/.. \
-I$(COMMON) \
$(CUTEST_CFLAGS)
LDADD = \
$(top_builddir)/common/libp11-library.la \
$(top_builddir)/common/libp11-compat.la \
$(CUTEST_LIBS) \
$(NULL)
CHECK_PROGS = \
test-dict \
test-array \
test-attrs \
test-buffer \
$(NULL)
noinst_PROGRAMS = \
$(CHECK_PROGS)
TESTS = $(CHECK_PROGS:=$(EXEEXT))
|