Merged r7478:7608 from michaelld/t186 into trunk. Adds ability to compile GNU Radio...
[debian/gnuradio] / gr-pager / src / Makefile.am
1 #
2 # Copyright 2004,2005,2006,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 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) $(WITH_INCLUDES)
47
48 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES) \
49         $(WITH_SWIG_INCLUDES) $(WITH_INCLUDES)
50
51 ALL_IFILES = \
52     $(LOCAL_IFILES) \
53     $(NON_LOCAL_IFILES) \
54     pager_flex_frame.i
55
56 NON_LOCAL_IFILES = \
57     $(GNURADIO_I)
58
59 LOCAL_IFILES = \
60     $(top_srcdir)/gr-pager/src/pager.i
61
62 # These files are built by SWIG.  The first is the C++ glue.
63 # The second is the python wrapper that loads the _howto shared library
64 # and knows how to call our extensions.
65
66 BUILT_SOURCES = \
67     pager_swig.cc \
68     pager_swig.py                               
69
70 # This gets imported Python objects installed in the right place
71 ourpython_PYTHON = \
72     __init__.py \
73     pager_swig.py \
74     flex_demod.py
75         
76 ourlib_LTLIBRARIES = _pager_swig.la
77
78 # These are the source files that go into the shared library
79 _pager_swig_la_SOURCES = \
80     pager_swig.cc \
81     pager_flex_frame.cc \
82     pager_slicer_fb.cc \
83     pager_flex_sync.cc \
84     pager_flex_deinterleave.cc \
85     pager_flex_parse.cc \
86     pageri_bch3221.cc \
87     pageri_flex_modes.cc \
88     pageri_util.cc
89     # Additional source modules here
90
91 # magic flags
92 _pager_swig_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
93
94 # link the library against the c++ standard library
95 _pager_swig_la_LIBADD = \
96     $(PYTHON_LDFLAGS) \
97     $(GNURADIO_CORE_LA) \
98     -lstdc++                    
99
100 pager_swig.cc pager_swig.py: $(ALL_IFILES)
101         $(SWIG) $(SWIGPYTHONARGS) -module pager_swig -o pager_swig.cc $(LOCAL_IFILES)
102
103 # These headers get installed in ${prefix}/include/gnuradio
104 grinclude_HEADERS = \
105     pager_slicer_fb.h \
106     pager_flex_sync.h \
107     pager_flex_deinterleave.h \
108     pager_flex_parse.h \
109     pager_flex_frame.h \
110     pageri_bch3221.h \
111     pageri_flex_modes.h \
112     pageri_util.h
113     # Additional header files here
114
115 # These swig headers get installed in ${prefix}/include/gnuradio/swig
116 swiginclude_HEADERS = \
117     $(LOCAL_IFILES) \
118     pager_flex_frame.i
119
120 MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc *~ *.tmp
121
122 # Don't distribute output of swig
123 dist-hook:
124         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
125         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done