Merged r7478:7608 from michaelld/t186 into trunk. Adds ability to compile GNU Radio...
[debian/gnuradio] / gr-radio-astronomy / src / lib / 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.ra 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 INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) $(WITH_INCLUDES)
32
33 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES) \
34         $(WITH_SWIG_INCLUDES) $(WITH_INCLUDES)
35
36 ALL_IFILES =                            \
37         $(LOCAL_IFILES)                 \
38         $(NON_LOCAL_IFILES)             
39
40 NON_LOCAL_IFILES =                      \
41         $(GNURADIO_I)
42
43 LOCAL_IFILES =                          \
44         $(top_srcdir)/gr-radio-astronomy/src/lib/ra.i                           
45
46 # These files are built by SWIG.  The first is the C++ glue.
47 # The second is the python wrapper that loads the _howto shared library
48 # and knows how to call our extensions.
49
50 BUILT_SOURCES =                 \
51         ra.cc                   \
52         ra.py                           
53
54 # This gets ra.py installed in the right place
55 ourpython_PYTHON =                      \
56         ra.py
57
58 ourlib_LTLIBRARIES = _ra.la
59
60 # These are the source files that go into the shared library
61 _ra_la_SOURCES =                \
62         ra.cc                   
63
64 # magic flags
65 _ra_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
66
67 # link the library against some comon swig runtime code and the 
68 # c++ standard library
69 _ra_la_LIBADD =                 \
70         $(PYTHON_LDFLAGS)       \
71         $(GNURADIO_CORE_LA)     \
72         -lstdc++                        
73
74 ra.cc ra.py: $(ALL_IFILES)
75         $(SWIG) $(SWIGPYTHONARGS) -module ra -o ra.cc $(LOCAL_IFILES)
76
77 # These headers get installed in ${prefix}/include/gnuradio
78 grinclude_HEADERS =
79
80 # These swig headers get installed in ${prefix}/include/gnuradio/swig
81 swiginclude_HEADERS =                   \
82         $(LOCAL_IFILES)
83
84
85 MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc
86
87 # Don't distribute output of swig
88 dist-hook:
89         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
90         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done