X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gr-audio-alsa%2Fsrc%2FMakefile.am;h=ed92cc197dece844e39c5c9a76f73dc46d51cbef;hb=ad13c00ae8cba6327851652a7d0c94a6d6316916;hp=17762342c1ac21c61bcb52ca4e505f3032e98f2a;hpb=0741656006d3d480b3e58d42916649a82e8f766a;p=debian%2Fgnuradio diff --git a/gr-audio-alsa/src/Makefile.am b/gr-audio-alsa/src/Makefile.am index 17762342..ed92cc19 100644 --- a/gr-audio-alsa/src/Makefile.am +++ b/gr-audio-alsa/src/Makefile.am @@ -1,11 +1,11 @@ # -# Copyright 2004 Free Software Foundation, Inc. +# Copyright 2004,2008,2009 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) +# the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, @@ -15,76 +15,68 @@ # # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. +# the Free Software Foundation, Inc., 51 Franklin Street, +# Boston, MA 02110-1301, USA. # include $(top_srcdir)/Makefile.common -# Install this stuff so that it ends up as the gnuradio.audio_alsa module -# This usually ends up at: -# ${prefix}/lib/python${python_version}/site-packages/gnuradio - -ourpythondir = $(grpythondir) -ourlibdir = $(grpyexecdir) - EXTRA_DIST = run_tests.in -TESTS = run_tests - -LOCAL_IFILES = \ - $(top_srcdir)/gr-audio-alsa/src/audio_alsa.i - -NON_LOCAL_IFILES = \ - $(GNURADIO_I) - -ALL_IFILES = \ - $(LOCAL_IFILES) \ - $(NON_LOCAL_IFILES) +# C/C++ headers get installed in ${prefix}/include/gnuradio +grinclude_HEADERS = \ + audio_alsa_sink.h \ + audio_alsa_source.h -BUILT_SOURCES = \ - audio_alsa.cc \ - audio_alsa.py +noinst_HEADERS = \ + gri_alsa.h -ourpython_PYTHON = \ - audio_alsa.py +noinst_PYTHON = \ + qa_alsa.py -INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) +AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) $(WITH_INCLUDES) -SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES) +################################### +# ALSA library, including OS interface, sink, and source -ourlib_LTLIBRARIES = _audio_alsa.la +lib_LTLIBRARIES = libgnuradio-audio-alsa.la -_audio_alsa_la_SOURCES = \ - audio_alsa.cc \ +libgnuradio_audio_alsa_la_SOURCES = \ audio_alsa_sink.cc \ audio_alsa_source.cc \ - gri_alsa.cc + gri_alsa.cc -grinclude_HEADERS = \ - audio_alsa_sink.h \ - audio_alsa_source.h +libgnuradio_audio_alsa_la_LIBADD = \ + $(GNURADIO_CORE_LA) \ + $(ALSA_LIBS) -noinst_HEADERS = \ - gri_alsa.h +libgnuradio_audio_alsa_la_LDFLAGS = $(NO_UNDEFINED) $(LTVERSIONFLAGS) +if PYTHON +################################### +# SWIG Python interface and library +TESTS = run_tests +DISTCLEANFILES = run_tests -swiginclude_HEADERS = \ - $(LOCAL_IFILES) +TOP_SWIG_IFILES = \ + audio_alsa.i -_audio_alsa_la_LIBADD = \ - $(PYTHON_LDFLAGS) \ - $(GNURADIO_CORE_LIBS) \ - $(ALSA_LIBS) \ - -lstdc++ +# Install so that they end up available as: +# import gnuradio.audio_alsa +# This ends up at: +# ${prefix}/lib/python${python_version}/site-packages/gnuradio +audio_alsa_pythondir_category = \ + gnuradio -_audio_alsa_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version +# additional libraries for linking with the SWIG-generated library +audio_alsa_la_swig_libadd = \ + libgnuradio-audio-alsa.la -audio_alsa.cc audio_alsa.py: $(LOCAL_IFILES) $(NON_LOCAL_IFILES) - $(SWIG) $(SWIGPYTHONARGS) -module audio_alsa -o audio_alsa.cc $(LOCAL_IFILES) +include $(top_srcdir)/Makefile.swig -noinst_PYTHON = \ - qa_alsa.py +# add some of the variables generated inside the Makefile.swig.gen +BUILT_SOURCES = $(swig_built_sources) -MOSTLYCLEANFILES = \ - $(BUILT_SOURCES) *~ *.pyc +# Do not distribute the output of SWIG +no_dist_files = $(swig_built_sources) +endif \ No newline at end of file