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