Statistics
| Branch: | Tag: | Revision:

root / gr-gsm-fr-vocoder / src / lib / Makefile.am @ c7aab5e1

History | View | Annotate | Download (2.8 kB)

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 2, 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., 59 Temple Place - Suite 330,
19
# Boston, MA 02111-1307, 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
INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS)
34
35
SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES)
36
37
38
ALL_IFILES = 				\
39
	$(LOCAL_IFILES)			\
40
	$(NON_LOCAL_IFILES)		
41
42
NON_LOCAL_IFILES =			\
43
	$(GNURADIO_I)
44
45
46
LOCAL_IFILES = 				\
47
	$(top_srcdir)/gr-gsm-fr-vocoder/src/lib/gsm_full_rate.i				
48
49
# These files are built by SWIG.  The first is the C++ glue.
50
# The second is the python wrapper that loads the _howto shared library
51
# and knows how to call our extensions.
52
53
BUILT_SOURCES = 			\
54
	gsm_full_rate.cc		\
55
	gsm_full_rate.py				
56
57
# This gets gsm_full_rate.py installed in the right place
58
ourpython_PYTHON =			\
59
	__init__.py			\
60
	gsm_full_rate.py
61
62
ourlib_LTLIBRARIES = _gsm_full_rate.la
63
64
# These are the source files that go into the shared library
65
_gsm_full_rate_la_SOURCES = 		\
66
	gsm_fr_decode_ps.cc		\
67
	gsm_fr_encode_sp.cc		\
68
	gsm_full_rate.cc		
69
70
71
# magic flags
72
_gsm_full_rate_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
73
74
# link the library against the gsm library and the
75
# c++ standard library
76
_gsm_full_rate_la_LIBADD = 	\
77
	gsm/libgsm.la		\
78
	$(PYTHON_LDFLAGS)	\
79
	$(GNURADIO_CORE_LIBS)	\
80
	-lstdc++			
81
82
gsm_full_rate.cc gsm_full_rate.py: gsm_full_rate.i $(ALL_IFILES)
83
	$(SWIG) $(SWIGPYTHONARGS) -module gsm_full_rate -o gsm_full_rate.cc $(LOCAL_IFILES)
84
85
# These headers get installed in ${prefix}/include/gnuradio
86
grinclude_HEADERS =			\
87
	gsm_fr_decode_ps.h		\
88
	gsm_fr_encode_sp.h		
89
90
# These swig headers get installed in ${prefix}/include/gnuradio/swig
91
swiginclude_HEADERS = 			\
92
	$(LOCAL_IFILES)
93
94
95
MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc
96
97
# Don't distribute output of swig
98
dist-hook:
99
	@for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
100
	@for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done
101