Merged r7478:7608 from michaelld/t186 into trunk. Adds ability to compile GNU Radio...
[debian/gnuradio] / gr-audio-windows / src / Makefile.am
1 #
2 # Copyright 2004,2005,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 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.audio_windows 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 EXTRA_DIST = run_tests.in
32 TESTS = run_tests
33
34 LOCAL_IFILES =                          \
35         $(top_srcdir)/gr-audio-windows/src/audio_windows.i                              
36
37 NON_LOCAL_IFILES =                      \
38         $(GNURADIO_I)
39
40 ALL_IFILES =                            \
41         $(LOCAL_IFILES)                 \
42         $(NON_LOCAL_IFILES)             
43
44 BUILT_SOURCES =                         \
45         audio_windows.cc                        \
46         audio_windows.py                                
47
48 ourpython_PYTHON =                      \
49         audio_windows.py
50
51 INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) $(WITH_INCLUDES)
52
53 SWIGCPPPYTHONARGS = -python $(PYTHON_CPPFLAGS) $(STD_DEFINES_AND_INCLUDES) \
54          $(WITH_SWIG_INCLUDES)
55
56 ourlib_LTLIBRARIES = _audio_windows.la
57
58 _audio_windows_la_SOURCES =             \
59         audio_windows.cc                        \
60         audio_windows_sink.cc           \
61         audio_windows_source.cc                 
62
63
64 grinclude_HEADERS =                     \
65         audio_windows_sink.h            \
66         audio_windows_source.h                  
67
68 swiginclude_HEADERS =                   \
69         $(LOCAL_IFILES)
70
71 _audio_windows_la_LIBADD =              \
72         $(PYTHON_LDFLAGS)               \
73         $(GNURADIO_CORE_LA)             \
74         $(WINAUDIO_LIBS)                \
75         -lstdc++                                
76
77 _audio_windows_la_LDFLAGS = -no-undefined -module -avoid-version \
78                              $(LIBGNURADIO_CORE_EXTRA_LDFLAGS)
79
80 audio_windows.cc audio_windows.py: $(LOCAL_IFILES)
81         $(SWIG) $(SWIGCPPPYTHONARGS) -module audio_windows -o audio_windows.cc $(LOCAL_IFILES)
82
83
84 noinst_PYTHON = qa_audio_windows.py
85
86 MOSTLYCLEANFILES = \
87         $(BUILT_SOURCES) *~ *.pyc
88
89 # Don't distribute output of swig
90 dist-hook:
91         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
92         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done