More fixes for ticket:35, which was reopened.
[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 = $(PYTHON_CPPFLAGS) $(STD_DEFINES_AND_INCLUDES)
34
35 SWIGCPPPYTHONARGS = -fvirtual -python -modern $(PYTHON_CPPFLAGS) \
36         $(STD_DEFINES_AND_INCLUDES)
37
38 NON_LOCAL_IFILES = $(GNURADIO_I)
39
40 LOCAL_IFILES = \
41         $(top_srcdir)/gr-error-correcting-codes/src/lib/ecc_syms_to_metrics.i \
42         $(top_srcdir)/gr-error-correcting-codes/src/lib/ecc_metrics_decode_viterbi_full_block.i         \
43         $(top_srcdir)/gr-error-correcting-codes/src/lib/ecc_streams_encode_convolutional.i              \
44         $(top_srcdir)/gr-error-correcting-codes/src/lib/ecc_streams_encode_turbo.i                      \
45         $(top_srcdir)/gr-error-correcting-codes/src/lib/ecc.i
46
47 # These files are built by SWIG.  The first is the C++ glue.
48 # The second is the python wrapper that loads the _howto shared library
49 # and knows how to call our extensions.
50
51 ALL_IFILES = $(LOCAL_IFILES) $(NON_LOCAL_IFILES)
52
53 BUILT_SOURCES =         \
54         ecc.cc          \
55         ecc.py          
56
57 # This gets ecc.py installed in the right place
58 ourpython_PYTHON =      \
59         __init__.py     \
60         ecc.py
61
62 ourlib_LTLIBRARIES = _ecc.la
63
64 # These are the source files that go into the shared library
65 _ecc_la_SOURCES =                                       \
66         ecc_syms_to_metrics.cc                          \
67         ecc_metrics_decode_viterbi_full_block.cc        \
68         ecc_streams_encode_convolutional.cc             \
69         ecc_streams_encode_turbo.cc                     \
70         ecc.cc
71
72 # magic flags
73 _ecc_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
74
75 # link the library against the c++ standard library
76 _ecc_la_LIBADD =                \
77         libecc/libecc.la        \
78         $(PYTHON_LDFLAGS)       \
79         $(GNURADIO_CORE_LIBS)   \
80         -lstdc++
81
82 # These headers get installed in ${prefix}/include/gnuradio
83 grinclude_HEADERS =                                     \
84         ecc_syms_to_metrics.h                           \
85         ecc_metrics_decode_viterbi_full_block.h         \
86         ecc_streams_encode_convolutional.h              \
87         ecc_streams_encode_turbo.h
88
89 # These swig headers get installed in ${prefix}/include/gnuradio/swig
90 swiginclude_HEADERS = $(LOCAL_IFILES)
91
92 ecc.cc ecc.py: $(top_srcdir)/gr-error-correcting-codes/src/lib/ecc.i $(ALL_IFILES)
93         $(SWIG) $(SWIGCPPPYTHONARGS) -module ecc -o ecc.cc $(top_srcdir)/gr-error-correcting-codes/src/lib/ecc.i
94
95 MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc *.loT *~
96
97 CONFIG_CLEAN_FILES = *.in