Merged r10288:10370 from michaelld/swigpythonargs into trunk. Passes distcheck.
[debian/gnuradio] / gr-cvsd-vocoder / src / lib / Makefile.am
1 #
2 # Copyright 2004,2005,2008,2009 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 AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) $(WITH_INCLUDES)
32
33 ALL_IFILES =                            \
34         $(LOCAL_IFILES)                 \
35         $(NON_LOCAL_IFILES)             
36
37 NON_LOCAL_IFILES =                      \
38         $(GNURADIO_I)
39
40 LOCAL_IFILES =                          \
41         $(srcdir)/cvsd_vocoder.i
42
43 # These files are built by SWIG.  The first is the C++ glue.
44 # The second is the python wrapper that loads the _howto shared library
45 # and knows how to call our extensions.
46
47 BUILT_SOURCES =                         \
48         cvsd_vocoder.cc         \
49         cvsd_vocoder.py                         
50
51 # This gets cvsd_vocoder.py installed in the right place
52 ourpython_PYTHON =                      \
53         cvsd_vocoder.py
54
55 ourlib_LTLIBRARIES = _cvsd_vocoder.la
56
57 # These are the source files that go into the shared library
58 _cvsd_vocoder_la_SOURCES =              \
59         cvsd_decode_bs.cc               \
60         cvsd_encode_sb.cc               \
61         cvsd_vocoder.cc         
62
63
64 # magic flags
65 _cvsd_vocoder_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
66
67 # link the library against the c++ standard library
68 _cvsd_vocoder_la_LIBADD =       \
69         $(PYTHON_LDFLAGS)       \
70         $(GNURADIO_CORE_LA)     \
71         -lstdc++                        
72
73 _cvsd_vocoder_la_CXXFLAGS = @swig_CXXFLAGS@
74
75 cvsd_vocoder.cc cvsd_vocoder.py: $(ALL_IFILES)
76         $(SWIG) $(STD_SWIG_PYTHON_ARGS) -module cvsd_vocoder \
77                 -o cvsd_vocoder.cc $(LOCAL_IFILES)
78
79 # These headers get installed in ${prefix}/include/gnuradio
80 grinclude_HEADERS =                     \
81         cvsd_decode_bs.h                \
82         cvsd_encode_sb.h                
83
84 # These swig headers get installed in ${prefix}/include/gnuradio/swig
85 swiginclude_HEADERS =                   \
86         $(LOCAL_IFILES)
87
88
89 MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc
90
91 # Don't distribute output of swig
92 dist-hook:
93         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
94         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done
95