Merged r10288:10370 from michaelld/swigpythonargs into trunk. Passes distcheck.
[debian/gnuradio] / gr-gsm-fr-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 SUBDIRS = gsm .
25
26 # Install this stuff so that it ends up as the gnuradio.vocoder module
27 # This usually ends up at:
28 #   ${prefix}/lib/python${python_version}/site-packages/gnuradio/vocoder
29
30 ourpythondir = $(grpythondir)/vocoder
31 ourlibdir    = $(grpyexecdir)/vocoder
32
33 AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) $(WITH_INCLUDES)
34
35 ALL_IFILES =                            \
36         $(LOCAL_IFILES)                 \
37         $(NON_LOCAL_IFILES)             
38
39 NON_LOCAL_IFILES =                      \
40         $(GNURADIO_I)
41
42 LOCAL_IFILES =                          \
43         $(srcdir)/gsm_full_rate.i
44
45 # These files are built by SWIG.  The first is the C++ glue.
46 # The second is the python wrapper that loads the _howto shared library
47 # and knows how to call our extensions.
48
49 BUILT_SOURCES =                         \
50         gsm_full_rate.cc                \
51         gsm_full_rate.py                                
52
53 # This gets gsm_full_rate.py installed in the right place
54 ourpython_PYTHON =                      \
55         gsm_full_rate.py
56
57 ourlib_LTLIBRARIES = _gsm_full_rate.la
58
59 # These are the source files that go into the shared library
60 _gsm_full_rate_la_SOURCES =             \
61         gsm_fr_decode_ps.cc             \
62         gsm_fr_encode_sp.cc             \
63         gsm_full_rate.cc                
64
65
66 # magic flags
67 _gsm_full_rate_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
68
69 # link the library against the gsm library and the
70 # c++ standard library
71 _gsm_full_rate_la_LIBADD =      \
72         gsm/libgsm.la           \
73         $(PYTHON_LDFLAGS)       \
74         $(GNURADIO_CORE_LA)     \
75         -lstdc++                        
76
77 gsm_full_rate.cc gsm_full_rate.py: $(ALL_IFILES)
78         $(SWIG) $(STD_SWIG_PYTHON_ARGS) -module gsm_full_rate \
79                 -o gsm_full_rate.cc $(LOCAL_IFILES)
80
81 # These headers get installed in ${prefix}/include/gnuradio
82 grinclude_HEADERS =                     \
83         gsm_fr_decode_ps.h              \
84         gsm_fr_encode_sp.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