Merged features/inband -r4812:5218 into trunk. This group of changes
[debian/gnuradio] / usrp / host / swig / Makefile.am
1 #
2 # Copyright 2001,2003,2004,2006,2007 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 ourpythondir = $(usrppythondir)
25 ourlibdir    = $(usrppyexecdir)
26
27
28 INCLUDES = $(USRP_INCLUDES)             \
29            $(PYTHON_CPPFLAGS)           \
30            -I$(srcdir)
31
32 LOCAL_IFILES =                          \
33         prims.i
34
35
36 ALL_IFILES =                            \
37         $(LOCAL_IFILES)                 
38
39
40 EXTRA_DIST =                            \
41         $(LOCAL_IFILES)
42
43
44 BUILT_SOURCES =                         \
45         prims.cc                        \
46         usrp_prims.py
47
48
49 ourpython_PYTHON =                      \
50         __init__.py                     \
51         usrp_fpga_regs.py               \
52         usrp_prims.py                   
53
54
55 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(INCLUDES)
56
57
58 ourlib_LTLIBRARIES =                    \
59         _usrp_prims.la
60
61 _usrp_prims_la_SOURCES =                \
62         prims.cc                
63
64
65 noinst_HEADERS =
66
67 _usrp_prims_la_LIBADD  = $(USRP_LA) -lstdc++ $(PYTHON_LDFLAGS)
68 _usrp_prims_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
69
70
71 prims.cc usrp_prims.py : prims.i ../../firmware/include/fpga_regs_common.h ../../firmware/include/fpga_regs_standard.h
72         $(SWIG) $(SWIGPYTHONARGS) -module usrp_prims -o prims.cc prims.i
73
74
75 MOSTLYCLEANFILES = \
76         prims.cc usrp_prims.py *~ *.pyc
77
78 # Don't distribute output of swig
79 dist-hook:
80         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
81         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done
82