aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/Makefile.am
blob: f6cb59202ffab8144b1c5538d4a4c4f727b64f7c (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
46
AUTOMAKE_OPTIONS = subdir-objects
AM_CPPFLAGS = -Wall -g $(all_includes)

noinst_PROGRAMS = \
	test_compandor \
	test_emphasis \
	test_dms \
	test_sms

test_compandor_SOURCES = test_compandor.c

test_compandor_LDADD = \
	$(COMMON_LA) \
	$(top_builddir)/src/common/libcommon.a \
	-lm

test_emphasis_SOURCES = test_emphasis.c dummy.c

test_emphasis_LDADD = \
	$(COMMON_LA) \
	$(top_builddir)/src/common/libcommon.a \
	$(ALSA_LIBS) \
	-lm

test_dms_SOURCES = \
	$(top_builddir)/src/nmt/dms.c \
	test_dms.c \
	dummy.c

test_dms_LDADD = \
	$(COMMON_LA) \
	$(top_builddir)/src/common/libcommon.a \
	$(ALSA_LIBS) \
	-lm

test_sms_SOURCES = \
	$(top_builddir)/src/nmt/sms.c \
	dummy.c \
	test_sms.c

test_sms_LDADD = \
	$(COMMON_LA) \
	$(top_builddir)/src/common/libcommon.a \
	$(ALSA_LIBS) \
	-lm