cleaning up and putting much better code in. Step 1 of 2
[debian/gnuradio] / gr-msdd6000 / src / 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 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 CCFLAGS = -g
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 INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS)
32
33 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(SWIGGRFLAGS)
34
35 ALL_IFILES =                            \
36         $(LOCAL_IFILES)                 \
37         $(NON_LOCAL_IFILES)             
38
39 NON_LOCAL_IFILES =                      \
40         $(GNURADIO_CORE_INCLUDEDIR)/swig/gnuradio.i
41
42
43 LOCAL_IFILES =                          \
44         $(top_srcdir)/src/msdd/msdd.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         msdd.cc                 \
52         msdd.py                         
53
54 # This gets howto.py installed in the right place
55 ourpython_PYTHON =                      \
56         msdd.py
57
58 ourlib_LTLIBRARIES = _msdd.la
59
60 # These are the source files that go into the shared library
61 _msdd_la_SOURCES =                      \
62         msdd.cc                 \
63         msdd_source_base.cc     \
64         msdd_source_c.cc        \
65         msdd_source_simple.cc   \
66         msdd_source_s.cc        \
67         msdd6000.cc
68
69 # magic flag
70 _msdd_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version 
71 #-lfftw3 -lfftw3f -lfann 
72
73 # link the library against some comon swig runtime code and the 
74 # c++ standard library
75 _msdd_la_LIBADD =                       \
76         $(PYTHON_LDFLAGS)               \
77         -lstdc++
78 # -L/usr/lib/libfftw3f.so.3.1.2
79
80 msdd.cc msdd.py: $(LOCAL_IFILES) $(ALL_IFILES) 
81         $(SWIG) $(SWIGPYTHONARGS) -module msdd -o msdd.cc $(LOCAL_IFILES)
82
83 # These headers get installed in ${prefix}/include/gnuradio
84 grinclude_HEADERS =                     \
85         msdd_source_base.h              \
86         msdd_source_c.h                 \
87         msdd_source_simple.h                    \
88         msdd_source_s.h                 
89
90
91
92 # These swig headers get installed in ${prefix}/include/gnuradio/swig
93 swiginclude_HEADERS =                   \
94         $(LOCAL_IFILES)
95
96
97 MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc
98
99 # Don't distribute output of swig
100 dist-hook:
101         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
102         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done