]> git.gag.com Git - debian/gnuradio/blob - gnuradio-core/src/lib/viterbi/Makefile.am
4b434cb4b7149d43bea681fc36a87617606301c9
[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 LIBS = -lm
21
22 noinst_LTLIBRARIES = libviterbi.la
23
24 libviterbi_la_SOURCES = \
25     metrics.c           \
26     tab.c               \
27     viterbi.c
28     
29 noinst_HEADERS =        \
30     viterbi.h
31
32 noinst_PROGRAMS = encode decode
33
34 encode_SOURCES = encode.cc
35
36 encode_LDADD = libviterbi.la
37
38 decode_SOURCES = decode.cc
39
40 decode_LDADD = libviterbi.la