Updated license from GPL version 2 or later to GPL version 3 or later.
[debian/gnuradio] / gr-cvsd-vocoder / src / lib / Makefile.am
1 #
2 # Copyright 2004,2005 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.vocoder module
25 # This usually ends up at:
26 #   ${prefix}/lib/python${python_version}/site-packages/gnuradio/vocoder
27
28 ourpythondir = $(grpythondir)/vocoder
29 ourlibdir    = $(grpyexecdir)/vocoder
30
31 INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS)
32
33 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES)
34
35
36 ALL_IFILES =                            \
37         $(LOCAL_IFILES)                 \
38         $(NON_LOCAL_IFILES)             
39
40 NON_LOCAL_IFILES =                      \
41         $(GNURADIO_I)
42
43
44 LOCAL_IFILES =                          \
45         $(top_srcdir)/gr-cvsd-vocoder/src/lib/cvsd_vocoder.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 BUILT_SOURCES =                         \
52         cvsd_vocoder.cc         \
53         cvsd_vocoder.py                         
54
55 # This gets cvsd_vocoder.py installed in the right place
56 ourpython_PYTHON =                      \
57         __init__.py                     \
58         cvsd_vocoder.py
59
60 ourlib_LTLIBRARIES = _cvsd_vocoder.la
61
62 # These are the source files that go into the shared library
63 _cvsd_vocoder_la_SOURCES =              \
64         cvsd_decode_bs.cc               \
65         cvsd_encode_sb.cc               \
66         cvsd_vocoder.cc         
67
68
69 # magic flags
70 _cvsd_vocoder_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
71
72 # link the library against the c++ standard library
73 _cvsd_vocoder_la_LIBADD =       \
74         $(PYTHON_LDFLAGS)       \
75         $(GNURADIO_CORE_LA)     \
76         -lstdc++                        
77
78 cvsd_vocoder.cc cvsd_vocoder.py: cvsd_vocoder.i $(ALL_IFILES)
79         $(SWIG) $(SWIGPYTHONARGS) -module cvsd_vocoder -o cvsd_vocoder.cc $(LOCAL_IFILES)
80
81 # These headers get installed in ${prefix}/include/gnuradio
82 grinclude_HEADERS =                     \
83         cvsd_decode_bs.h                \
84         cvsd_encode_sb.h                
85
86 # These swig headers get installed in ${prefix}/include/gnuradio/swig
87 swiginclude_HEADERS =                   \
88         $(LOCAL_IFILES)
89
90
91 MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc
92
93 # Don't distribute output of swig
94 dist-hook:
95         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
96         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done
97