Merged r8195:8205 from jcorgan/ecc into trunk. Adds convolutional encoder
[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 INCLUDES = -Wall -Werror
21 LIBS = -lm
22
23 noinst_LTLIBRARIES = libviterbi.la
24
25 libviterbi_la_SOURCES = \
26     metrics.c           \
27     tab.c               \
28     viterbi.c
29     
30 noinst_HEADERS =        \
31     viterbi.h
32
33 noinst_PROGRAMS = encode decode
34
35 encode_SOURCES = encode.cc
36
37 encode_LDADD = libviterbi.la
38
39 decode_SOURCES = decode.cc
40
41 decode_LDADD = libviterbi.la