1## Process this file with automake to produce Makefile.in
2
3check_PROGRAMS = testdsp \
4		 testg711 \
5		 testmetro \
6		 testmetro-static
7
8TESTS=$(check_PROGRAMS)
9
10testdsp_SOURCES = testdsp.c \
11		  ../src/dsp.c \
12		  ../src/g711.c \
13		  ../src/util.c \
14		  ../src/threadtalk.c \
15		  common.c
16
17testg711_SOURCES = testg711.c \
18		  ../src/g711.c \
19		  common.c
20
21testmetro_SOURCES = testmetro.c \
22		  ../src/metro.c \
23		  ../src/g711.c \
24		  ../src/visualtick.c \
25		  ../src/threadtalk.c \
26		  ../src/util.c \
27		  ../src/option.c \
28		  ../src/options.c \
29		  ../src/gtkoptions.c \
30		  ../src/dsp.c \
31		  ../src/help.c \
32		  ../src/gtkutil.c \
33		  ../src/profiles.c \
34		  ../src/optionlexer.l \
35		  ../src/optionparser.y \
36		  common.c
37
38testmetro_static_SOURCES = testmetro-static.c \
39		  ../src/g711.c \
40		  ../src/visualtick.c \
41		  ../src/threadtalk.c \
42		  ../src/util.c \
43		  ../src/option.c \
44		  ../src/options.c \
45		  ../src/gtkoptions.c \
46		  ../src/dsp.c \
47		  ../src/help.c \
48		  ../src/gtkutil.c \
49		  ../src/profiles.c \
50		  ../src/optionlexer.l \
51		  ../src/optionparser.y \
52		  common.c
53
54#testdsp_
55LDADD = @DEPS_LIBS@ @SNDFILE_LIBS@ @CHECK_LIBS@ @DMALLOC_LIBS@
56
57noinst_HEADERS = common.h
58
59top_srcdir = @top_srcdir@
60datadir = @datadir@
61localedir = $(datadir)/locale
62DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
63LIBS = @LIBINTL@ @LIBS@
64
65AM_CPPFLAGS = -I../src -I../intl -I$(top_srcdir)/intl @DEPS_CFLAGS@ @SNDFILE_CFLAGS@ @CHECK_CFLAGS@ @DMALLOC_CFLAGS@
66AM_CFLAGS = -DVERSION='"@VERSION@"' -DPACKAGE='"@PACKAGE@"' -DUSE_DMALLOC
67
68AM_YFLAGS = -d
69AM_LFLAGS=-olex.yy.c
70BUILT_SOURCES = ../src/optionparser.h
71
72AUTOMAKE_OPTIONS = subdir-objects
73