aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/Makefile.am
blob: 78e7d7bea82166b9498f148ffcbe52543cbe1455 (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
AM_CPPFLAGS = -Wall -g $(all_includes)

noinst_PROGRAMS = \
	test_compandor \
	test_emphasis \
	test_dms

test_compandor_SOURCES = test_compandor.c

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

test_emphasis_SOURCES = test_emphasis.c

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

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

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