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