Merged r10288:10370 from michaelld/swigpythonargs into trunk. Passes distcheck.
[debian/gnuradio] / gr-audio-portaudio / src / Makefile.am
1 #
2 # Copyright 2004,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 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_portaudio 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
33 TESTS = run_tests
34
35 LOCAL_IFILES =                          \
36         $(srcdir)/audio_portaudio.i
37
38 NON_LOCAL_IFILES =                      \
39         $(GNURADIO_I)
40
41 ALL_IFILES =                            \
42         $(LOCAL_IFILES)                 \
43         $(NON_LOCAL_IFILES)             
44
45 BUILT_SOURCES =                         \
46         audio_portaudio.cc              \
47         audio_portaudio.py                              
48
49 ourpython_PYTHON =                      \
50         audio_portaudio.py
51
52 AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) \
53         $(PORTAUDIO_CFLAGS) $(WITH_INCLUDES)
54
55 ourlib_LTLIBRARIES = _audio_portaudio.la
56
57 _audio_portaudio_la_SOURCES =           \
58         audio_portaudio.cc              \
59         audio_portaudio_sink.cc         \
60         audio_portaudio_source.cc       \
61         gri_portaudio.cc                        
62
63 grinclude_HEADERS =                     \
64         audio_portaudio_sink.h          \
65         audio_portaudio_source.h                
66
67 noinst_HEADERS =                        \
68         gri_portaudio.h
69
70 swiginclude_HEADERS =                   \
71         $(LOCAL_IFILES)
72
73 _audio_portaudio_la_LIBADD =            \
74         $(PYTHON_LDFLAGS)               \
75         $(GNURADIO_CORE_LA)             \
76         $(PORTAUDIO_LIBS)               \
77         -lstdc++
78
79 _audio_portaudio_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
80
81 _audio_portaudio_la_CXXFLAGS = @swig_CXXFLAGS@
82
83 audio_portaudio.cc audio_portaudio.py: $(ALL_IFILES) audio_portaudio_sink.h audio_portaudio_source.h
84         $(SWIG) $(STD_SWIG_PYTHON_ARGS) -module audio_portaudio \
85                 -o audio_portaudio.cc $(LOCAL_IFILES)
86
87 noinst_PYTHON =                         \
88         qa_portaudio.py
89
90 MOSTLYCLEANFILES = \
91         $(BUILT_SOURCES) *~ *.pyc
92
93 # Don't distribute output of swig
94 dist-hook:
95         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
96         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done