portaudio specific examples added to gr-audio-portaudio
[debian/gnuradio] / gr-audio-portaudio / src / Makefile.am
1 #
2 # Copyright 2004,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 SUBDIRS = python
25
26
27 # Install this stuff so that it ends up as the gnuradio.audio_portaudio module
28 # This usually ends up at:
29 #   ${prefix}/lib/python${python_version}/site-packages/gnuradio
30
31 ourpythondir = $(grpythondir)
32 ourlibdir    = $(grpyexecdir)
33
34 EXTRA_DIST = run_tests.in
35
36 TESTS = run_tests
37
38 LOCAL_IFILES =                          \
39         $(top_srcdir)/gr-audio-portaudio/src/audio_portaudio.i
40
41 NON_LOCAL_IFILES =                      \
42         $(GNURADIO_I)
43
44 ALL_IFILES =                            \
45         $(LOCAL_IFILES)                 \
46         $(NON_LOCAL_IFILES)             
47
48 BUILT_SOURCES =                         \
49         audio_portaudio.cc              \
50         audio_portaudio.py                              
51
52 ourpython_PYTHON =                      \
53         audio_portaudio.py
54
55 AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) \
56         $(PORTAUDIO_CFLAGS) $(WITH_INCLUDES)
57
58 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES) \
59         -I/usr/include $(WITH_SWIG_INCLUDES) $(WITH_INCLUDES)
60
61 ourlib_LTLIBRARIES = _audio_portaudio.la
62
63 _audio_portaudio_la_SOURCES =           \
64         audio_portaudio.cc              \
65         audio_portaudio_sink.cc         \
66         audio_portaudio_source.cc       \
67         gri_portaudio.cc                        
68
69 grinclude_HEADERS =                     \
70         audio_portaudio_sink.h          \
71         audio_portaudio_source.h                
72
73 noinst_HEADERS =                        \
74         gri_portaudio.h
75
76 swiginclude_HEADERS =                   \
77         $(LOCAL_IFILES)
78
79 _audio_portaudio_la_LIBADD =            \
80         $(PYTHON_LDFLAGS)               \
81         $(GNURADIO_CORE_LA)             \
82         $(PORTAUDIO_LIBS)               \
83         -lstdc++
84
85 _audio_portaudio_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
86
87 audio_portaudio.cc audio_portaudio.py: $(ALL_IFILES) audio_portaudio_sink.h audio_portaudio_source.h
88         $(SWIG) $(SWIGPYTHONARGS) -module audio_portaudio -o audio_portaudio.cc $(LOCAL_IFILES)
89
90 noinst_PYTHON =                         \
91         qa_portaudio.py
92
93 MOSTLYCLEANFILES = \
94         $(BUILT_SOURCES) *~ *.pyc
95
96 # Don't distribute output of swig
97 dist-hook:
98         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
99         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done