9eeb3e043d6faf93b1a2b91490aa2e7078474292
[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 AM_CPPFLAGS = $(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 $(srcdir)/Makefile.gen
56
57 $(srcdir)/Makefile.gen $(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         touch $(srcdir)/Makefile.in
61
62 # These files are built by SWIG.  The first is the C++ glue.
63 # The second is the python wrapper that loads the _trellis shared library
64 # and knows how to call our extensions.
65
66 swig_built_sources =            \
67         trellis.cc              \
68         trellis.py                              
69
70 BUILT_SOURCES = \
71         $(GENERATED_H)          \
72         $(GENERATED_I)          \
73         $(GENERATED_CC)         \
74         $(swig_built_sources)
75
76 ALL_IFILES =                    \
77         $(LOCAL_IFILES)         \
78         $(NON_LOCAL_IFILES)     
79
80 NON_LOCAL_IFILES =              \
81         $(GNURADIO_I)   
82
83 LOCAL_IFILES =                  \
84         $(top_srcdir)/gr-trellis/src/lib/trellis.i                      
85
86 EXTRA_DIST =                    \
87         $(CODE_GENERATOR)
88
89 # This gets trellis.py installed in the right place
90 ourpython_PYTHON =              \
91         trellis.py
92
93 ourlib_LTLIBRARIES = _trellis.la
94
95 # These are the source files that go into the shared library
96 _trellis_la_SOURCES =                   \
97         trellis.cc                      \
98         fsm.cc                          \
99         quicksort_index.cc              \
100         base.cc                         \
101         interleaver.cc                  \
102         trellis_calc_metric.cc          \
103         trellis_permutation.cc          \
104         trellis_siso_f.cc               \
105         trellis_siso_combined_f.cc      \
106         $(GENERATED_CC)                 
107
108 # magic flags
109 _trellis_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
110
111 # link the library against some comon swig runtime code and the 
112 # c++ standard library
113 _trellis_la_LIBADD =                    \
114         $(PYTHON_LDFLAGS)               \
115         $(GNURADIO_CORE_LA)             \
116         -lstdc++
117
118 trellis.cc trellis.py: $(ALL_IFILES) $(grinclude_HEADERS)
119         $(SWIG) $(SWIGPYTHONARGS) -module trellis -o trellis.cc $(LOCAL_IFILES)
120
121 # These headers get installed in ${prefix}/include/gnuradio
122 grinclude_HEADERS =                     \
123         fsm.h                           \
124         quicksort_index.h               \
125         base.h                          \
126         interleaver.h                   \
127         trellis_metric_type.h           \
128         trellis_calc_metric.h           \
129         trellis_permutation.h           \
130         trellis_siso_type.h             \
131         trellis_siso_f.h                \
132         trellis_siso_combined_f.h       \
133         $(GENERATED_H)
134
135 # These swig headers get installed in ${prefix}/include/gnuradio/swig
136 swiginclude_HEADERS =                   \
137         $(LOCAL_IFILES)                 \
138         $(GENERATED_I)                  \
139         fsm.i                           \
140         interleaver.i                   \
141         trellis_permutation.i           \
142         trellis_siso_f.i                \
143         trellis_siso_combined_f.i       \
144         trellis_generated.i
145
146 CLEANFILES = $(BUILT_SOURCES) *.pyc
147
148 # Don't distribute output of swig
149 dist-hook:
150         @for file in $(swig_built_sources); do echo $(RM) $(distdir)/$$file; done
151         @for file in $(swig_built_sources); do $(RM) $(distdir)/$$file; done