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