Houston, we have a trunk.
[debian/gnuradio] / gr-audio-alsa / 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 # Install this stuff so that it ends up as the gnuradio.audio_alsa 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 LIBS += $(GNURADIO_CORE_LIBS)
32
33 EXTRA_DIST = run_tests.in
34
35 TESTS = run_tests
36
37 LOCAL_IFILES =                          \
38         audio_alsa.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_alsa.cc                   \
49         audio_alsa.py                           
50
51 ourpython_PYTHON =                      \
52         audio_alsa.py
53
54 INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS)
55
56 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES)
57
58 ourlib_LTLIBRARIES = _audio_alsa.la
59
60 _audio_alsa_la_SOURCES =                \
61         audio_alsa.cc                   \
62         audio_alsa_sink.cc              \
63         audio_alsa_source.cc            \
64         gri_alsa.cc                     
65
66 grinclude_HEADERS =                     \
67         audio_alsa_sink.h               \
68         audio_alsa_source.h             
69
70 noinst_HEADERS =                        \
71         gri_alsa.h                      
72
73
74 swiginclude_HEADERS =                   \
75         $(LOCAL_IFILES)
76
77 _audio_alsa_la_LIBADD =                 \
78         $(PYTHON_LDFLAGS)               \
79         -lstdc++                                
80
81 _audio_alsa_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
82
83 audio_alsa.cc audio_alsa.py: audio_alsa.i $(NON_LOCAL_IFILES)
84         $(SWIG) $(SWIGPYTHONARGS) -module audio_alsa -o audio_alsa.cc $<
85
86
87 noinst_PYTHON =                         \
88         qa_alsa.py                      
89
90 MOSTLYCLEANFILES = \
91         $(BUILT_SOURCES) *~ *.pyc