Merged r7478:7608 from michaelld/t186 into trunk. Adds ability to compile GNU Radio...
[debian/gnuradio] / gr-trellis / src / lib / Makefile.am
1 #
2 # Copyright 2004,2005,2006,2007,2008 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 3, 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., 51 Franklin Street,
19 # Boston, MA 02110-1301, USA.
20
21
22 include $(top_srcdir)/Makefile.common
23
24 # Install this stuff so that it ends up as the gnuradio.trellis module
25 # This usually ends up at:
26 #   ${prefix}/lib/python${python_version}/site-packages/gnuradio
27
28 ourpythondir = $(grpythondir)
29 ourlibdir    = $(grpyexecdir)
30
31 INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) $(WITH_INCLUDES)
32
33 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES) \
34         $(WITH_SWIG_INCLUDES) $(WITH_INCLUDES)
35
36 # ----------------------------------------------------------------
37 # these scripts generate trellis codes from template files
38
39 CODE_GENERATOR =                                \
40         generate_all.py                         \
41         generate_trellis.py                     \
42         trellis_encoder_XX.cc.t                 \
43         trellis_encoder_XX.h.t                  \
44         trellis_encoder_XX.i.t                  \
45         trellis_metrics_X.cc.t                  \
46         trellis_metrics_X.h.t                   \
47         trellis_metrics_X.i.t                   \
48         trellis_viterbi_combined_XX.cc.t                \
49         trellis_viterbi_combined_XX.h.t         \
50         trellis_viterbi_combined_XX.i.t         \
51         trellis_viterbi_X.cc.t                  \
52         trellis_viterbi_X.h.t                   \
53         trellis_viterbi_X.i.t
54
55 include Makefile.gen
56
57 $(GENERATED_H) $(GENERATED_I) $(GENERATED_CC): $(CODE_GENERATOR)
58         PYTHONPATH=$(top_srcdir)/gnuradio-core/src/python \
59                 srcdir=$(srcdir) $(PYTHON) $(srcdir)/generate_all.py
60
61 # These files are built by SWIG.  The first is the C++ glue.
62 # The second is the python wrapper that loads the _trellis shared library
63 # and knows how to call our extensions.
64
65 swig_built_sources =            \
66         trellis.cc              \
67         trellis.py                              
68
69 BUILT_SOURCES = \
70         $(GENERATED_H)          \
71         $(GENERATED_I)          \
72         $(GENERATED_CC)         \
73         $(swig_built_sources)
74
75 ALL_IFILES =                    \
76         $(LOCAL_IFILES)         \
77         $(NON_LOCAL_IFILES)     
78
79 NON_LOCAL_IFILES =              \
80         $(GNURADIO_I)   
81
82 LOCAL_IFILES =                  \
83         $(top_srcdir)/gr-trellis/src/lib/trellis.i                      
84
85 EXTRA_DIST =                    \
86         $(CODE_GENERATOR)
87
88 # This gets trellis.py installed in the right place
89 ourpython_PYTHON =              \
90         trellis.py
91
92 ourlib_LTLIBRARIES = _trellis.la
93
94 # These are the source files that go into the shared library
95 _trellis_la_SOURCES =                   \
96         trellis.cc                      \
97         fsm.cc                          \
98         quicksort_index.cc              \
99         base.cc                         \
100         interleaver.cc                  \
101         trellis_calc_metric.cc          \
102         trellis_permutation.cc          \
103         trellis_siso_f.cc               \
104         trellis_siso_combined_f.cc      \
105         $(GENERATED_CC)                 
106
107 # magic flags
108 _trellis_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
109
110 # link the library against some comon swig runtime code and the 
111 # c++ standard library
112 _trellis_la_LIBADD =                    \
113         $(PYTHON_LDFLAGS)               \
114         $(GNURADIO_CORE_LA)             \
115         -lstdc++
116
117 trellis.cc trellis.py: $(ALL_IFILES) $(grinclude_HEADERS)
118         $(SWIG) $(SWIGPYTHONARGS) -module trellis -o trellis.cc $(LOCAL_IFILES)
119
120 # These headers get installed in ${prefix}/include/gnuradio
121 grinclude_HEADERS =                     \
122         fsm.h                           \
123         quicksort_index.h               \
124         base.h                          \
125         interleaver.h                   \
126         trellis_metric_type.h           \
127         trellis_calc_metric.h           \
128         trellis_permutation.h           \
129         trellis_siso_type.h             \
130         trellis_siso_f.h                \
131         trellis_siso_combined_f.h       \
132         $(GENERATED_H)
133
134 # These swig headers get installed in ${prefix}/include/gnuradio/swig
135 swiginclude_HEADERS =                   \
136         $(LOCAL_IFILES)                 \
137         $(GENERATED_I)                  \
138         fsm.i                           \
139         interleaver.i                   \
140         trellis_permutation.i           \
141         trellis_siso_f.i                \
142         trellis_siso_combined_f.i       \
143         trellis_generated.i
144
145 CLEANFILES = $(BUILT_SOURCES) *.pyc
146
147 # Don't distribute output of swig
148 dist-hook:
149         @for file in $(swig_built_sources); do echo $(RM) $(distdir)/$$file; done
150         @for file in $(swig_built_sources); do $(RM) $(distdir)/$$file; done