Houston, we have a trunk.
[debian/gnuradio] / gr-audio-portaudio / src / Makefile.am
1 #
2 # Copyright 2004 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., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
20
21
22 include $(top_srcdir)/Makefile.common
23
24 LIBS += $(GNURADIO_CORE_LIBS)
25
26 # Install this stuff so that it ends up as the gnuradio.audio_portaudio module
27 # This usually ends up at:
28 #   ${prefix}/lib/python${python_version}/site-packages/gnuradio
29
30 ourpythondir = $(grpythondir)
31 ourlibdir    = $(grpyexecdir)
32
33 EXTRA_DIST = run_tests.in
34
35 TESTS = run_tests
36
37 LOCAL_IFILES =                          \
38         audio_portaudio.i                               
39
40 NON_LOCAL_IFILES =                      \
41         $(top_srcdir)/gnuradio-core/src/lib/swig/gnuradio.i
42
43 ALL_IFILES =                            \
44         $(LOCAL_IFILES)                 \
45         $(NON_LOCAL_IFILES)             
46
47 BUILT_SOURCES =                         \
48         audio_portaudio.cc                      \
49         audio_portaudio.py                              
50
51 ourpython_PYTHON =                      \
52         audio_portaudio.py
53
54 INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS)
55
56 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES) -I/usr/include
57
58 ourlib_LTLIBRARIES = _audio_portaudio.la
59
60
61 _audio_portaudio_la_SOURCES =           \
62         audio_portaudio.cc              \
63         audio_portaudio_sink.cc         \
64         audio_portaudio_source.cc       \
65         gri_portaudio.cc                        
66
67 grinclude_HEADERS =                     \
68         audio_portaudio_sink.h          \
69         audio_portaudio_source.h                
70
71 noinst_HEADERS =                        \
72         gri_portaudio.h                 
73
74
75 swiginclude_HEADERS =                   \
76         $(LOCAL_IFILES)
77
78 _audio_portaudio_la_LIBADD =            \
79         $(PYTHON_LDFLAGS)               \
80         -lstdc++                                
81
82 _audio_portaudio_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
83
84 audio_portaudio.cc audio_portaudio.py: $(ALL_IFILES) audio_portaudio_sink.h audio_portaudio_source.h
85         $(SWIG) $(SWIGPYTHONARGS) -module audio_portaudio -o audio_portaudio.cc $<
86
87
88 noinst_PYTHON =                         \
89         qa_portaudio.py                 
90
91 MOSTLYCLEANFILES = \
92         $(BUILT_SOURCES) *~ *.pyc