Merged r10288:10370 from michaelld/swigpythonargs into trunk. Passes distcheck.
[debian/gnuradio] / gr-msdd6000 / src / Makefile.am
1 #
2 # Copyright 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 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 # Install this stuff so that it ends up as the gnuradio.howto 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
32 #EXTRA_DIST = run_tests.in
33
34 #TESTS = run_tests
35
36
37 #INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS)
38
39 AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) \
40         $(WITH_INCLUDES)
41
42 NON_LOCAL_IFILES =                      \
43         $(GNURADIO_I)
44
45 LOCAL_IFILES =                          \
46         $(srcdir)/msdd.i
47
48 ALL_IFILES =                            \
49         $(LOCAL_IFILES)                 \
50         $(NON_LOCAL_IFILES)             
51
52
53 # These files are built by SWIG.  The first is the C++ glue.
54 # The second is the python wrapper that loads the _howto shared library
55 # and knows how to call our extensions.
56
57 BUILT_SOURCES =                         \
58         msdd.cc                 \
59         msdd.py                         
60
61 # This gets howto.py installed in the right place
62 ourpython_PYTHON =                      \
63         msdd.py
64
65 ourlib_LTLIBRARIES = _msdd.la
66
67 # These are the source files that go into the shared library
68 _msdd_la_SOURCES =                      \
69         msdd.cc                 \
70         msdd_source_base.cc     \
71         msdd_source_c.cc        \
72         msdd_source_simple.cc   \
73         msdd_source_s.cc        \
74         msdd6000.cc
75
76 # magic flag
77 _msdd_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version 
78 #-lfftw3 -lfftw3f -lfann 
79
80 # link the library against some comon swig runtime code and the 
81 # c++ standard library
82 _msdd_la_LIBADD =                       \
83         $(PYTHON_LDFLAGS)               \
84         -lstdc++
85 # -L/usr/lib/libfftw3f.so.3.1.2
86
87 msdd.cc msdd.py: $(ALL_IFILES) 
88         $(SWIG) $(STD_SWIG_PYTHON_ARGS) -module msdd \
89                 -o msdd.cc $(LOCAL_IFILES)
90
91 # These headers get installed in ${prefix}/include/gnuradio
92 grinclude_HEADERS =                     \
93         msdd_source_base.h              \
94         msdd_source_c.h                 \
95         msdd_source_simple.h                    \
96         msdd_source_s.h         \
97         msdd_buffer_copy_behaviors.h \
98         msdd6000.h
99
100
101 # These swig headers get installed in ${prefix}/include/gnuradio/swig
102 swiginclude_HEADERS =                   \
103         $(LOCAL_IFILES)
104
105
106 MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc
107
108 # Don't distribute output of swig
109 dist-hook:
110         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
111         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done