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