Merged r4632:4645 on jcorgan/linking into trunk. Cleans up linking issues with libto...
[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 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., 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
27 TESTS = \
28     run_tests
29
30 bin_SCRIPTS = \
31     usrp_flex.py \
32     aypabtu.py 
33     
34 noinst_PYTHON = \
35     qa_pager.py
36
37 # Install this stuff so that it ends up as the gnuradio.pgr module
38 # This usually ends up at:
39 #   ${prefix}/lib/python${python_version}/site-packages/gnuradio/pager
40
41 ourpythondir = $(grpythondir)/pager
42 ourlibdir    = $(grpyexecdir)/pager
43
44 INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS)
45
46 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES)
47
48 ALL_IFILES = \
49     $(LOCAL_IFILES) \
50     $(NON_LOCAL_IFILES) \
51     pager_flex_frame.i
52
53 NON_LOCAL_IFILES = \
54     $(GNURADIO_I)
55
56 LOCAL_IFILES = \
57     $(top_srcdir)/gr-pager/src/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 pgr.py installed in the right place
68 ourpython_PYTHON = \
69     __init__.py \
70     pager_swig.py \
71     flex_demod.py \
72     usrp_flex.py \
73     aypabtu.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