new experimental daughterboards with other tuners
[debian/gnuradio] / gr-usrp / 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 # 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         $(top_srcdir)/gr-usrp/src/usrp1.i                               
36
37 NON_LOCAL_IFILES = $(GNURADIO_I)
38
39 ALL_IFILES =                            \
40         $(LOCAL_IFILES)                 \
41         $(NON_LOCAL_IFILES)             
42
43 BUILT_SOURCES =                         \
44         usrp1.cc                        \
45         usrp1.py                        
46
47 ourpython_PYTHON =                      \
48         db_base.py                      \
49         db_basic.py                     \
50         db_dbs_rx.py                    \
51         db_flexrf.py                    \
52         db_flexrf_mimo.py               \
53         db_wbx.py                       \
54         db_xcvr2450.py                  \
55         db_instantiator.py              \
56         db_tv_rx.py                     \
57         db_dtt754.py                    \
58         db_dtt768.py                    \
59         flexrf_debug_gui.py             \
60         tx_debug_gui.py                 \
61         usrp.py                         \
62         usrp1.py                        \
63         usrp_multi.py                   
64
65
66 AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES)  \
67            $(PYTHON_CPPFLAGS)           \
68            $(USRP_INCLUDES)             \
69            $(WITH_INCLUDES)
70
71 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS)          \
72                  $(STD_DEFINES_AND_INCLUDES) \
73                  $(USRP_INCLUDES)            \
74                  $(WITH_INCLUDES)            \
75                  $(WITH_SWIG_INCLUDES)
76
77 grinclude_HEADERS =                     \
78         usrp1_sink_base.h               \
79         usrp1_sink_c.h                  \
80         usrp1_sink_s.h                  \
81         usrp1_source_base.h             \
82         usrp1_source_c.h                \
83         usrp1_source_s.h                
84
85 swiginclude_HEADERS =                   \
86         $(LOCAL_IFILES)
87
88
89 ourlib_LTLIBRARIES = _usrp1.la
90
91
92 _usrp1_la_SOURCES =                     \
93         usrp1.cc                        \
94         usrp1_sink_base.cc              \
95         usrp1_sink_c.cc                 \
96         usrp1_sink_s.cc                 \
97         usrp1_source_base.cc            \
98         usrp1_source_c.cc               \
99         usrp1_source_s.cc               
100
101
102 _usrp1_la_LIBADD =                      \
103         $(PYTHON_LDFLAGS)               \
104         $(GNURADIO_CORE_LA)             \
105         $(USRP_LA)                      \
106         -lstdc++
107
108
109 _usrp1_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
110
111
112 usrp1.cc usrp1.py: usrp1.i $(NON_LOCAL_IFILES) $(LOCAL_IFILES)
113         $(SWIG) $(SWIGPYTHONARGS) -module usrp1 -o usrp1.cc $(LOCAL_IFILES)
114
115
116 noinst_PYTHON =                         \
117         qa_usrp.py                      
118
119 MOSTLYCLEANFILES = \
120         $(BUILT_SOURCES) *~ *.pyc
121
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