aboutsummaryrefslogtreecommitdiff
path: root/libqcdm/tests/Makefile.am
blob: eb38fdbb00f2aedcad9528dead8081c711b35ee0 (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
INCLUDES = \
	-I$(top_srcdir)/libqcdm/src

noinst_PROGRAMS = test-qcdm

test_qcdm_SOURCES = \
	test-qcdm-crc.c \
	test-qcdm-crc.h \
	test-qcdm-escaping.c \
	test-qcdm-escaping.h \
	test-qcdm-utils.c \
	test-qcdm-utils.h \
	test-qcdm-com.c \
	test-qcdm-com.h \
	test-qcdm-result.c \
	test-qcdm-result.h \
	test-qcdm.c

test_qcdm_CPPFLAGS = \
	$(MM_CFLAGS)

test_qcdm_LDADD = \
	$(top_builddir)/libqcdm/src/libqcdm.la \
	$(MM_LIBS)

if WITH_TESTS

check-local: test-qcdm
	$(abs_builddir)/test-qcdm

endif