Merged build_config branch into trunk:
[debian/gnuradio] / gr-cvsd-vocoder / src / lib / Makefile.am
1 #
2 # Copyright 2004,2005,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.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 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES) \
34         $(WITH_SWIG_INCLUDES) $(WITH_INCLUDES)
35
36 ALL_IFILES =                            \
37         $(LOCAL_IFILES)                 \
38         $(NON_LOCAL_IFILES)             
39
40 NON_LOCAL_IFILES =                      \
41         $(GNURADIO_I)
42
43 LOCAL_IFILES =                          \
44         $(top_srcdir)/gr-cvsd-vocoder/src/lib/cvsd_vocoder.i
45
46 # These files are built by SWIG.  The first is the C++ glue.
47 # The second is the python wrapper that loads the _howto shared library
48 # and knows how to call our extensions.
49
50 BUILT_SOURCES =                         \
51         cvsd_vocoder.cc         \
52         cvsd_vocoder.py                         
53
54 # This gets cvsd_vocoder.py installed in the right place
55 ourpython_PYTHON =                      \
56         cvsd_vocoder.py
57
58 ourlib_LTLIBRARIES = _cvsd_vocoder.la
59
60 # These are the source files that go into the shared library
61 _cvsd_vocoder_la_SOURCES =              \
62         cvsd_decode_bs.cc               \
63         cvsd_encode_sb.cc               \
64         cvsd_vocoder.cc         
65
66
67 # magic flags
68 _cvsd_vocoder_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
69
70 # link the library against the c++ standard library
71 _cvsd_vocoder_la_LIBADD =       \
72         $(PYTHON_LDFLAGS)       \
73         $(GNURADIO_CORE_LA)     \
74         -lstdc++                        
75
76 cvsd_vocoder.cc cvsd_vocoder.py: cvsd_vocoder.i $(ALL_IFILES)
77         $(SWIG) $(SWIGPYTHONARGS) -module cvsd_vocoder -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