Updated FSF address in all files. Fixes ticket:51
[debian/gnuradio] / gr-radar / src / lib / Makefile.am
1 #
2 # Copyright 2004,2005 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.radar 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
43 LOCAL_IFILES =                          
44
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
52 lib_LTLIBRARIES = libradar.la
53
54 libradar_la_SOURCES =                   \
55         time_series.h                   \
56         time_series.cc                  \
57         simulation.h                    \
58         simulation.cc                   
59
60 # magic flags
61 libradar_la_LDFLAGS = $(NO_UNDEFINED) -avoid-version
62
63 # link the libraray against the c++ standard library
64 libradar_la_LIBADD =                    \
65         -lstdc++                        
66
67 bin_PROGRAMS =                          \
68         xambi                           \
69         eb-xambi                        \
70         sim-airplane                    \
71         sim-airplane2                   
72
73 xambi_SOURCES   = xambi.cc
74 xambi_LDADD     = libradar.la $(GNURADIO_CORE_LIBS)
75
76 eb_xambi_SOURCES = eb-xambi.cc
77 eb_xambi_LDADD   = libradar.la $(GNURADIO_CORE_LIBS)
78
79 sim_airplane_SOURCES = sim-airplane.cc
80 sim_airplane_LDADD = libradar.la $(GNURADIO_CORE_LIBS)
81
82 sim_airplane2_SOURCES = sim-airplane2.cc
83 sim_airplane2_LDADD = libradar.la $(GNURADIO_CORE_LIBS)
84
85 # This gets howto.py installed in the right place
86 # ourpython_PYTHON =                    
87
88
89 #howto.cc howto.py: howto.i $(ALL_IFILES)
90 #       $(SWIG) $(SWIGPYTHONARGS) -module howto -o howto.cc $<
91
92 # These headers get installed in ${prefix}/include/gnuradio
93 grinclude_HEADERS =                     
94
95
96 # These swig headers get installed in ${prefix}/include/gnuradio/swig
97 swiginclude_HEADERS =                   \
98         $(LOCAL_IFILES)
99
100
101 MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc
102
103
104 # Don't distribute output of swig
105 dist-hook:
106         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
107         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done