X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gr-audio-oss%2Fsrc%2FMakefile.am;h=628c9fd9304c52096902d397eff3b697386f7883;hb=38a5621196c440b28274c1a66d9a2e085f8817b1;hp=1a73d8d4c02df7bce115d5131886c82c8737b4d4;hpb=591ecb7f286484ff157147829c8c9ec69ec2f7fa;p=debian%2Fgnuradio diff --git a/gr-audio-oss/src/Makefile.am b/gr-audio-oss/src/Makefile.am index 1a73d8d4..628c9fd9 100644 --- a/gr-audio-oss/src/Makefile.am +++ b/gr-audio-oss/src/Makefile.am @@ -1,11 +1,11 @@ # -# Copyright 2004,2005,2006 Free Software Foundation, Inc. +# Copyright 2004,2005,2006,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,77 +15,60 @@ # # 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 -LIBS += $(GNURADIO_CORE_LIBS) - -# Install this stuff so that it ends up as the gnuradio.audio_oss module -# This usually ends up at: -# ${prefix}/lib/python${python_version}/site-packages/gnuradio - -ourpythondir = $(grpythondir) -ourlibdir = $(grpyexecdir) +AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) $(WITH_INCLUDES) EXTRA_DIST = run_tests.in -TESTS = run_tests - -LOCAL_IFILES = \ - audio_oss.i - -NON_LOCAL_IFILES = \ - $(top_srcdir)/gnuradio-core/src/lib/swig/gnuradio.i - -ALL_IFILES = \ - $(LOCAL_IFILES) \ - $(NON_LOCAL_IFILES) -BUILT_SOURCES = \ - audio_oss.cc \ - audio_oss.py +# C/C++ headers get installed in ${prefix}/include/gnuradio +grinclude_HEADERS = \ + audio_oss_sink.h \ + audio_oss_source.h -ourpython_PYTHON = \ - audio_oss.py - -INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) - -SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES) +noinst_PYTHON = qa_oss.py -ourlib_LTLIBRARIES = _audio_oss.la +lib_LTLIBRARIES = libgnuradio-audio-oss.la -_audio_oss_la_SOURCES = \ - audio_oss.cc \ +libgnuradio_audio_oss_la_SOURCES = \ audio_oss_sink.cc \ - audio_oss_source.cc - + audio_oss_source.cc -grinclude_HEADERS = \ - audio_oss_sink.h \ - audio_oss_source.h +libgnuradio_audio_oss_la_LIBADD = \ + $(GNURADIO_CORE_LA) \ + $(OSS_LIBS) -swiginclude_HEADERS = \ - $(LOCAL_IFILES) +libgnuradio_audio_oss_la_LDFLAGS = $(NO_UNDEFINED) $(LTVERSIONFLAGS) -_audio_oss_la_LIBADD = \ - $(PYTHON_LDFLAGS) \ - $(OSS_LIBS) \ - -lstdc++ +if PYTHON +################################### +# SWIG Python interface and library +TESTS = run_tests +DISTCLEANFILES = run_tests -_audio_oss_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version +TOP_SWIG_IFILES = \ + audio_oss.i -audio_oss.cc audio_oss.py: audio_oss.i $(NON_LOCAL_IFILES) - $(SWIG) $(SWIGPYTHONARGS) -module audio_oss -o audio_oss.cc $< +# Install so that they end up available as: +# import gnuradio.audio_oss +# This ends up at: +# ${prefix}/lib/python${python_version}/site-packages/gnuradio +audio_oss_pythondir_category = \ + gnuradio -# Don't distribute output of swig -dist-hook: - @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done - @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done +# additional libraries for linking with the SWIG-generated library +audio_oss_la_swig_libadd = \ + libgnuradio-audio-oss.la -noinst_PYTHON = qa_oss.py +include $(top_srcdir)/Makefile.swig -MOSTLYCLEANFILES = \ - $(BUILT_SOURCES) *~ *.pyc +# add some of the variables generated inside the Makefile.swig.gen +BUILT_SOURCES = $(swig_built_sources) +# Do not distribute the output of SWIG +no_dist_files = $(swig_built_sources) +endif