blob: 7b1348da3aa1fb816f7b2b070fa29c6e18d2a04c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#
# Copyright 2006 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Radio; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
#
include $(top_srcdir)/Makefile.common
SUBDIRS = mld . tests
INCLUDES = $(STD_DEFINES_AND_INCLUDES) \
-I$(top_srcdir)/gr-error-correcting-codes/src/lib
noinst_LTLIBRARIES = libecc.la
libecc_la_SOURCES = \
code_convolutional_trellis.cc \
code_metrics.cc code_io.cc \
encoder.cc \
encoder_convolutional.cc \
encoder_turbo.cc \
decoder.cc \
decoder_viterbi.cc \
decoder_viterbi_full_block.cc
noinst_HEADERS = \
code_types.h code_metrics.h code_io.h \
code_convolutional_trellis.h \
encoder.h encoder_turbo.h \
encoder_convolutional.h \
decoder.h decoder_viterbi.h \
decoder_viterbi_full_block.h
# link the library against the c++ standard library
libecc_la_LIBADD = \
mld/libmld.la \
$(PYTHON_LDFLAGS) \
$(GNURADIO_CORE_LIBS) \
-lstdc++
MOSTLYCLEANFILES = *.loT *~
CONFIG_CLEAN_FILES = *.in
|