Imported Upstream version 3.2.2
[debian/gnuradio] / gnuradio-core / src / lib / viterbi / Makefile.am
1 #
2 # Copyright 2008 Free Software Foundation, Inc.
3
4 # GNU Radio is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3, or (at your option)
7 # any later version.
8
9 # GNU Radio is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with GNU Radio; see the file COPYING.  If not, write to
16 # the Free Software Foundation, Inc., 51 Franklin Street,
17 # Boston, MA 02110-1301, USA.
18
19
20 include $(top_srcdir)/Makefile.common
21
22 LIBS = -lm
23
24 noinst_LTLIBRARIES = libviterbi.la
25
26 libviterbi_la_SOURCES = \
27     metrics.c           \
28     tab.c               \
29     viterbi.c
30
31 noinst_HEADERS =        \
32     viterbi.h
33
34 noinst_PROGRAMS = encode decode
35
36 encode_SOURCES = encode.cc
37
38 encode_LDADD = libviterbi.la
39
40 decode_SOURCES = decode.cc
41
42 decode_LDADD = libviterbi.la