2 # Copyright 2004,2005,2006,2008 Free Software Foundation, Inc.
4 # This file is part of GNU Radio
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)
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.
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.
22 include $(top_srcdir)/Makefile.common
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
28 ourpythondir = $(grpythondir)
29 ourlibdir = $(grpyexecdir)
31 EXTRA_DIST = run_tests.in
35 $(top_srcdir)/gr-usrp/src/usrp1.i
37 NON_LOCAL_IFILES = $(GNURADIO_I)
66 AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) \
71 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) \
72 $(STD_DEFINES_AND_INCLUDES) \
85 swiginclude_HEADERS = \
89 ourlib_LTLIBRARIES = _usrp1.la
97 usrp1_source_base.cc \
104 $(GNURADIO_CORE_LA) \
109 _usrp1_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
111 _usrp1_la_CXXFLAGS = @swig_CXXFLAGS@
113 usrp1.cc usrp1.py: usrp1.i $(NON_LOCAL_IFILES) $(LOCAL_IFILES)
114 $(SWIG) $(SWIGPYTHONARGS) -module usrp1 -o usrp1.cc $(LOCAL_IFILES)
121 $(BUILT_SOURCES) *~ *.pyc
124 # Don't distribute output of swig
126 @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
127 @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done