Revert mistaken version change.
[debian/gnuradio] / gr-pager / src / Makefile.am
1 #
2 # Copyright 2004,2005,2006 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 INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS)
47
48 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES)
49
50 ALL_IFILES = \
51     $(LOCAL_IFILES) \
52     $(NON_LOCAL_IFILES) \
53     pager_flex_frame.i
54
55 NON_LOCAL_IFILES = \
56     $(GNURADIO_I)
57
58 LOCAL_IFILES = \
59     $(top_srcdir)/gr-pager/src/pager.i
60
61 # These files are built by SWIG.  The first is the C++ glue.
62 # The second is the python wrapper that loads the _howto shared library
63 # and knows how to call our extensions.
64
65 BUILT_SOURCES = \
66     pager_swig.cc \
67     pager_swig.py                               
68
69 # This gets imported Python objects installed in the right place
70 ourpython_PYTHON = \
71     __init__.py \
72     pager_swig.py \
73     flex_demod.py
74         
75 ourlib_LTLIBRARIES = _pager_swig.la
76
77 # These are the source files that go into the shared library
78 _pager_swig_la_SOURCES = \
79     pager_swig.cc \
80     pager_flex_frame.cc \
81     pager_slicer_fb.cc \
82     pager_flex_sync.cc \
83     pager_flex_deinterleave.cc \
84     pager_flex_parse.cc \
85     pageri_bch3221.cc \
86     pageri_flex_modes.cc \
87     pageri_util.cc
88     # Additional source modules here
89
90 # magic flags
91 _pager_swig_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
92
93 # link the library against the c++ standard library
94 _pager_swig_la_LIBADD = \
95     $(PYTHON_LDFLAGS) \
96     $(GNURADIO_CORE_LA) \
97     -lstdc++                    
98
99 pager_swig.cc pager_swig.py: $(ALL_IFILES)
100         $(SWIG) $(SWIGPYTHONARGS) -module pager_swig -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