Fixes ticket #12. Merged r3170:HEAD from
[debian/gnuradio] / gr-audio-oss / src / Makefile.am
1 #
2 # Copyright 2004,2005,2006 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_oss 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 TESTS = run_tests
35
36 LOCAL_IFILES =                          \
37         audio_oss.i                             
38
39 NON_LOCAL_IFILES =                      \
40         $(top_srcdir)/gnuradio-core/src/lib/swig/gnuradio.i
41
42 ALL_IFILES =                            \
43         $(LOCAL_IFILES)                 \
44         $(NON_LOCAL_IFILES)             
45
46 BUILT_SOURCES =                         \
47         audio_oss.cc                    \
48         audio_oss.py                    
49
50 ourpython_PYTHON =                      \
51         audio_oss.py
52
53 INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS)
54
55 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES)
56
57 ourlib_LTLIBRARIES = _audio_oss.la
58
59 _audio_oss_la_SOURCES =                 \
60         audio_oss.cc                    \
61         audio_oss_sink.cc               \
62         audio_oss_source.cc                     
63
64
65 grinclude_HEADERS =                     \
66         audio_oss_sink.h                \
67         audio_oss_source.h                      
68
69 swiginclude_HEADERS =                   \
70         $(LOCAL_IFILES)
71
72 _audio_oss_la_LIBADD =                  \
73         $(PYTHON_LDFLAGS)               \
74         $(OSS_LIBS)                     \
75         -lstdc++                                
76
77 _audio_oss_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
78
79 audio_oss.cc audio_oss.py: audio_oss.i $(NON_LOCAL_IFILES)
80         $(SWIG) $(SWIGPYTHONARGS) -module audio_oss -o audio_oss.cc $<
81
82 # Don't distribute output of swig
83 dist-hook:
84         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
85         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done
86
87 noinst_PYTHON = qa_oss.py
88
89 MOSTLYCLEANFILES = \
90         $(BUILT_SOURCES) *~ *.pyc
91