]> git.gag.com Git - debian/gnuradio/blob - gr-gpio/src/lib/Makefile.am
Merged r7611:7614 from jcorgan/gpio into trunk. Adds custom
[debian/gnuradio] / gr-gpio / src / lib / Makefile.am
1 #
2 # Copyright 2004,2005,2006,2007,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 ourpythondir = $(grpythondir)/gpio
25 ourlibdir    = $(grpyexecdir)/gpio
26
27 INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) $(WITH_INCLUDES)
28
29 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES) \
30     $(WITH_SWIG_INCLUDES) $(WITH_INCLUDES)
31
32 ALL_IFILES =                            \
33         $(LOCAL_IFILES)                 \
34         $(NON_LOCAL_IFILES)             
35
36 NON_LOCAL_IFILES = $(GNURADIO_I)
37
38 LOCAL_IFILES =                          \
39         $(top_srcdir)/gr-gpio/src/lib/gpio.i                            
40
41 # These files are built by SWIG.  The first is the C++ glue.
42 # The second is the python wrapper that loads the _gpio shared library
43 # and knows how to call our extensions.
44
45 BUILT_SOURCES =                         \
46         gpio_swig.cc                    \
47         gpio_swig.py                            
48
49 # This gets gpio.py installed in the right place
50 ourpython_PYTHON =                      \
51         gpio_swig.py
52
53 ourlib_LTLIBRARIES = _gpio_swig.la
54
55 # These are the source files that go into the shared library
56 _gpio_swig_la_SOURCES =                 \
57         gpio_swig.cc                    \
58         gpio_and_const_ss.cc            
59
60 # magic flags
61 _gpio_swig_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
62
63 # link the library against some comon swig runtime code and the 
64 # c++ standard library
65 _gpio_swig_la_LIBADD =                  \
66         $(PYTHON_LDFLAGS)               \
67         $(GNURADIO_CORE_LA)             \
68         -lstdc++                        
69
70 gpio_swig.cc gpio_swig.py: $(LOCAL_IFILES) $(ALL_IFILES)
71         $(SWIG) $(SWIGPYTHONARGS) -module gpio_swig -o gpio_swig.cc $(LOCAL_IFILES)
72
73 # These headers get installed in ${prefix}/include/gnuradio
74 grinclude_HEADERS =                     \
75         gpio_and_const_ss.h             
76
77 # These swig headers get installed in ${prefix}/include/gnuradio/swig
78 swiginclude_HEADERS =                   \
79         $(LOCAL_IFILES)
80
81
82 # Don't distribute output of swig
83 dist-hook:
84         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
85         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done
86
87 MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc *~