Merged r10288:10370 from michaelld/swigpythonargs into trunk. Passes distcheck.
[debian/gnuradio] / gr-pager / src / Makefile.am
1 #
2 # Copyright 2004,2005,2006,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 EXTRA_DIST = \
25     run_tests.in \
26     $(bin_SCRIPTS)
27
28 TESTS = \
29     run_tests
30
31 bin_SCRIPTS = \
32     usrp_flex.py \
33     usrp_flex_all.py \
34     usrp_flex_band.py
35
36 noinst_PYTHON = \
37     qa_pager.py
38
39 # Install this stuff so that it ends up as the gnuradio.pgr module
40 # This usually ends up at:
41 #   ${prefix}/lib/python${python_version}/site-packages/gnuradio/pager
42
43 ourpythondir = $(grpythondir)/pager
44 ourlibdir    = $(grpyexecdir)/pager
45
46 AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) $(WITH_INCLUDES)
47
48 ALL_IFILES = \
49     $(LOCAL_IFILES) \
50     $(NON_LOCAL_IFILES) \
51     $(srcdir)/pager_flex_frame.i
52
53 NON_LOCAL_IFILES = \
54     $(GNURADIO_I)
55
56 LOCAL_IFILES = \
57     $(srcdir)/pager.i
58
59 # These files are built by SWIG.  The first is the C++ glue.
60 # The second is the python wrapper that loads the _howto shared library
61 # and knows how to call our extensions.
62
63 BUILT_SOURCES = \
64     pager_swig.cc \
65     pager_swig.py                               
66
67 # This gets imported Python objects installed in the right place
68 ourpython_PYTHON = \
69     __init__.py \
70     pager_swig.py \
71     pager_utils.py \
72     flex_demod.py
73
74 ourlib_LTLIBRARIES = _pager_swig.la
75
76 # These are the source files that go into the shared library
77 _pager_swig_la_SOURCES = \
78     pager_swig.cc \
79     pager_flex_frame.cc \
80     pager_slicer_fb.cc \
81     pager_flex_sync.cc \
82     pager_flex_deinterleave.cc \
83     pager_flex_parse.cc \
84     pageri_bch3221.cc \
85     pageri_flex_modes.cc \
86     pageri_util.cc
87     # Additional source modules here
88
89 # magic flags
90 _pager_swig_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
91
92 # link the library against the c++ standard library
93 _pager_swig_la_LIBADD = \
94     $(PYTHON_LDFLAGS) \
95     $(GNURADIO_CORE_LA) \
96     -lstdc++                    
97
98 pager_swig.cc pager_swig.py: $(ALL_IFILES)
99         $(SWIG) $(STD_SWIG_PYTHON_ARGS) -module pager_swig \
100                 -o pager_swig.cc $(LOCAL_IFILES)
101
102 # These headers get installed in ${prefix}/include/gnuradio
103 grinclude_HEADERS = \
104     pager_slicer_fb.h \
105     pager_flex_sync.h \
106     pager_flex_deinterleave.h \
107     pager_flex_parse.h \
108     pager_flex_frame.h \
109     pageri_bch3221.h \
110     pageri_flex_modes.h \
111     pageri_util.h
112     # Additional header files here
113
114 # These swig headers get installed in ${prefix}/include/gnuradio/swig
115 swiginclude_HEADERS = \
116     $(LOCAL_IFILES) \
117     pager_flex_frame.i
118
119 MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc *~ *.tmp
120
121 # Don't distribute output of swig
122 dist-hook:
123         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
124         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done