better (read: real) fix for ticket:15
[debian/gnuradio] / gr-usrp / 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., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
20
21
22 include $(top_srcdir)/Makefile.common
23
24 # Install this stuff so that it ends up as the gnuradio.usrp module
25 # This usually ends up at:
26 #   ${prefix}/lib/python${python_version}/site-packages/gnuradio
27
28 ourpythondir = $(grpythondir)
29 ourlibdir    = $(grpyexecdir)
30
31 EXTRA_DIST = run_tests.in
32 TESTS = run_tests
33
34 LOCAL_IFILES =                          \
35         usrp1.i                         
36
37 NON_LOCAL_IFILES =                      \
38         $(top_srcdir)/gnuradio-core/src/lib/swig/gnuradio.i
39
40 ALL_IFILES =                            \
41         $(LOCAL_IFILES)                 \
42         $(NON_LOCAL_IFILES)             
43
44 BUILT_SOURCES =                         \
45         usrp1.cc                        \
46         usrp1.py                        
47
48 ourpython_PYTHON =                      \
49         db_base.py                      \
50         db_basic.py                     \
51         db_dbs_rx.py                    \
52         db_flexrf.py                    \
53         db_flexrf_mimo.py               \
54         db_instantiator.py              \
55         db_tv_rx.py                     \
56         flexrf_debug_gui.py             \
57         tx_debug_gui.py                 \
58         usrp.py                         \
59         usrp1.py                        \
60         usrp_multi.py                   
61
62
63 INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) $(USRP_INCLUDES)
64
65 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES) $(USRP_INCLUDES)
66
67 grinclude_HEADERS =                     \
68         usrp1_sink_base.h               \
69         usrp1_sink_c.h                  \
70         usrp1_sink_s.h                  \
71         usrp1_source_base.h             \
72         usrp1_source_c.h                \
73         usrp1_source_s.h                
74
75 swiginclude_HEADERS =                   \
76         $(LOCAL_IFILES)
77
78
79 ourlib_LTLIBRARIES = _usrp1.la
80
81
82 _usrp1_la_SOURCES =                     \
83         usrp1.cc                        \
84         usrp1_sink_base.cc              \
85         usrp1_sink_c.cc                 \
86         usrp1_sink_s.cc                 \
87         usrp1_source_base.cc            \
88         usrp1_source_c.cc               \
89         usrp1_source_s.cc               
90
91
92 _usrp1_la_LIBADD =                      \
93         $(PYTHON_LDFLAGS)               \
94         $(GNURADIO_CORE_LIBS)           \
95         $(USRP_LIBS)                    \
96         -lstdc++
97
98
99 _usrp1_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
100
101
102 usrp1.cc usrp1.py: usrp1.i $(NON_LOCAL_IFILES)
103         $(SWIG) $(SWIGPYTHONARGS) -module usrp1 -o usrp1.cc $<
104
105
106 noinst_PYTHON =                         \
107         qa_usrp.py                      
108
109 MOSTLYCLEANFILES = \
110         $(BUILT_SOURCES) *~ *.pyc
111
112
113 # Don't distribute output of swig
114 dist-hook:
115         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
116         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done
117