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