Fixes for ticket:10, ticket:18, and ticket:19. Merged r3194:3215 from
[debian/gnuradio] / gr-error-correcting-codes / src / lib / Makefile.am
1 #
2 # Copyright 2006 Free Software Foundation, Inc.
3
4 # This file is part of GNU Radio
5
6 # GNU Radio is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
10
11 # GNU Radio is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Radio; see the file COPYING.  If not, write to
18 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
20
21
22 include $(top_srcdir)/Makefile.common
23
24 SUBDIRS = libecc
25
26 # Install this stuff so that it ends up as the gnuradio.und module
27 # This usually ends up at:
28 #   ${prefix}/lib/python${python_version}/site-packages/gnuradio
29
30 ourpythondir = $(grpythondir)
31 ourlibdir    = $(grpythondir)
32
33 INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS)
34
35 SWIGCPPPYTHONARGS = -fvirtual -python -modern $(PYTHON_CPPFLAGS) $(STD_DEFINES_AND_INCLUDES)
36
37 ALL_IFILES =                            \
38         $(LOCAL_IFILES)                 \
39         $(NON_LOCAL_IFILES)
40
41 NON_LOCAL_IFILES =                      \
42         $(GNURADIO_I)
43
44 LOCAL_IFILES =                                          \
45         ecc_syms_to_metrics.i                           \
46         ecc_metrics_decode_viterbi_full_block.i         \
47         ecc_streams_encode_convolutional.i              \
48         ecc_streams_encode_turbo.i                      \
49         ecc.i
50
51 # These files are built by SWIG.  The first is the C++ glue.
52 # The second is the python wrapper that loads the _howto shared library
53 # and knows how to call our extensions.
54
55 BUILT_SOURCES =         \
56         ecc.cc          \
57         ecc.py          
58
59 # This gets ecc.py installed in the right place
60 ourpython_PYTHON =      \
61         __init__.py     \
62         ecc.py
63
64 ourlib_LTLIBRARIES = _ecc.la
65
66 # These are the source files that go into the shared library
67 _ecc_la_SOURCES =                                       \
68         ecc_syms_to_metrics.cc                          \
69         ecc_metrics_decode_viterbi_full_block.cc        \
70         ecc_streams_encode_convolutional.cc             \
71         ecc_streams_encode_turbo.cc                     \
72         ecc.cc
73
74 # magic flags
75 _ecc_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
76
77 # link the library against the c++ standard library
78 _ecc_la_LIBADD =                \
79         libecc/libecc.la        \
80         $(PYTHON_LDFLAGS)       \
81         $(GNURADIO_CORE_LIBS)   \
82         -lstdc++
83
84 # These headers get installed in ${prefix}/include/gnuradio
85 grinclude_HEADERS =                                     \
86         ecc_syms_to_metrics.h                           \
87         ecc_metrics_decode_viterbi_full_block.h         \
88         ecc_streams_encode_convolutional.h              \
89         ecc_streams_encode_turbo.h
90
91 # These swig headers get installed in ${prefix}/include/gnuradio/swig
92 swiginclude_HEADERS = $(LOCAL_IFILES)
93
94 ecc.cc ecc.py: ecc.i $(ALL_IFILES)
95         $(SWIG) $(SWIGCPPPYTHONARGS) -module ecc -o ecc.cc $<
96
97 MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc *.loT *~
98
99 CONFIG_CLEAN_FILES = *.in