Merged r10288:10370 from michaelld/swigpythonargs into trunk. Passes distcheck.
[debian/gnuradio] / gr-audio-osx / src / Makefile.am
1 #
2 # Copyright 2006,2008,2009 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_osx 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 TESTS = run_tests
33
34 LOCAL_IFILES =                          \
35         $(srcdir)/audio_osx.i                           
36
37 NON_LOCAL_IFILES =                      \
38         $(GNURADIO_I)
39
40 ALL_IFILES =                            \
41         $(LOCAL_IFILES)                 \
42         $(NON_LOCAL_IFILES)             
43
44 BUILT_SOURCES =                         \
45         audio_osx.cc                    \
46         audio_osx.py                            
47
48 ourpython_PYTHON =                      \
49         audio_osx.py
50
51 AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) $(WITH_INCLUDES)
52
53 ourlib_LTLIBRARIES = _audio_osx.la
54
55 _audio_osx_la_SOURCES =                 \
56         audio_osx.cc                    \
57         audio_osx_sink.cc               \
58         audio_osx_source.cc                     
59
60 noinst_HEADERS =                        \
61         audio_osx.h                     \
62         circular_buffer.h               \
63         mld_threads.h
64
65 grinclude_HEADERS =                     \
66         audio_osx_sink.h                \
67         audio_osx_source.h                      
68
69 swiginclude_HEADERS =                   \
70         $(LOCAL_IFILES)
71
72 _audio_osx_la_LIBADD =                  \
73         $(PYTHON_LDFLAGS)               \
74         $(GNURADIO_CORE_LA)             \
75         -lstdc++                                
76
77 _audio_osx_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version -framework AudioUnit -framework CoreAudio -framework AudioToolbox
78
79 _audio_osx_la_CXXFLAGS = @swig_CXXFLAGS@
80
81 audio_osx.cc audio_osx.py: $(ALL_IFILES)
82         $(SWIG) $(STD_SWIG_PYTHON_ARGS) -module audio_osx \
83                 -o audio_osx.cc $(LOCAL_IFILES)
84
85 noinst_PYTHON = qa_osx.py test_audio_loop.py
86
87 MOSTLYCLEANFILES = $(BUILT_SOURCES) *~ *.pyc run_tests *.loT
88
89 CONFIG_CLEAN_FILES = run_tests *.loT
90
91 # Don't distribute output of swig
92 dist-hook:
93         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
94         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done