Merged r7478:7608 from michaelld/t186 into trunk. Adds ability to compile GNU Radio...
[debian/gnuradio] / gr-audio-alsa / 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 # 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 EXTRA_DIST = run_tests.in
32
33 TESTS = run_tests
34
35 LOCAL_IFILES =                          \
36         $(top_srcdir)/gr-audio-alsa/src/audio_alsa.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_alsa.cc                   \
47         audio_alsa.py                           
48
49 ourpython_PYTHON =                      \
50         audio_alsa.py
51
52 INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) $(WITH_INCLUDES)
53
54 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES) \
55         $(WITH_SWIG_INCLUDES) $(WITH_INCLUDES)
56
57 ourlib_LTLIBRARIES = _audio_alsa.la
58
59 lib_LTLIBRARIES = libgr_audio_alsa.la
60
61 _audio_alsa_la_SOURCES =                \
62         audio_alsa.cc
63
64 libgr_audio_alsa_la_SOURCES =           \
65         audio_alsa_sink.cc              \
66         audio_alsa_source.cc            \
67         gri_alsa.cc
68
69 grinclude_HEADERS =                     \
70         audio_alsa_sink.h               \
71         audio_alsa_source.h
72
73 noinst_HEADERS =                        \
74         gri_alsa.h
75
76 swiginclude_HEADERS =                   \
77         $(LOCAL_IFILES)
78
79 _audio_alsa_la_LIBADD =                 \
80         $(PYTHON_LDFLAGS)               \
81         $(GNURADIO_CORE_LA)             \
82         $(ALSA_LIBS)                    \
83         libgr_audio_alsa.la             \
84         -lstdc++
85
86 libgr_audio_alsa_la_LIBADD =            \
87         $(ALSA_LIBS)
88
89 _audio_alsa_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
90
91 libgr_audio_alsa_la_LDFLAGS = $(NO_UNDEFINED)
92
93 audio_alsa.cc audio_alsa.py: $(LOCAL_IFILES) $(NON_LOCAL_IFILES)
94         $(SWIG) $(SWIGPYTHONARGS) -module audio_alsa -o audio_alsa.cc $(LOCAL_IFILES)
95
96 noinst_PYTHON =                         \
97         qa_alsa.py                      
98
99 MOSTLYCLEANFILES = \
100         $(BUILT_SOURCES) *~ *.pyc
101
102 # Don't distribute output of swig
103 dist-hook:
104         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
105         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done