diff options
author | jcorgan | 2007-09-04 21:28:57 +0000 |
---|---|---|
committer | jcorgan | 2007-09-04 21:28:57 +0000 |
commit | 9ccd0ffb7846f7d8d82e9214bca9c2d11311b649 (patch) | |
tree | f0a73a304601d9bf13d639a0af5b2645bb7041c0 /gnuradio-core/src/python | |
parent | a211635bd5035f23e398ffbc32488d15a611d873 (diff) | |
download | gnuradio-9ccd0ffb7846f7d8d82e9214bca9c2d11311b649.tar.gz gnuradio-9ccd0ffb7846f7d8d82e9214bca9c2d11311b649.tar.bz2 gnuradio-9ccd0ffb7846f7d8d82e9214bca9c2d11311b649.zip |
Merged r6285:6297 from features/deb into trunk. Nearing completion on Debian packaging for 3.1.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@6299 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gnuradio-core/src/python')
-rw-r--r-- | gnuradio-core/src/python/gnuradio/Makefile.am | 2 | ||||
-rw-r--r-- | gnuradio-core/src/python/gnuradio/vocoder/Makefile.am | 26 | ||||
-rw-r--r-- | gnuradio-core/src/python/gnuradio/vocoder/__init__.py | 1 |
3 files changed, 28 insertions, 1 deletions
diff --git a/gnuradio-core/src/python/gnuradio/Makefile.am b/gnuradio-core/src/python/gnuradio/Makefile.am index d769647be..d9815b523 100644 --- a/gnuradio-core/src/python/gnuradio/Makefile.am +++ b/gnuradio-core/src/python/gnuradio/Makefile.am @@ -21,7 +21,7 @@ include $(top_srcdir)/Makefile.common -SUBDIRS = gr gru gruimpl blks blksimpl blks2 blksimpl2 +SUBDIRS = gr gru gruimpl blks blksimpl blks2 blksimpl2 vocoder grpython_PYTHON = \ __init__.py \ diff --git a/gnuradio-core/src/python/gnuradio/vocoder/Makefile.am b/gnuradio-core/src/python/gnuradio/vocoder/Makefile.am new file mode 100644 index 000000000..69c140c10 --- /dev/null +++ b/gnuradio-core/src/python/gnuradio/vocoder/Makefile.am @@ -0,0 +1,26 @@ +# +# Copyright 2004,2007 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 3, or (at your option) +# any later version. +# +# GNU Radio is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# 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., 51 Franklin Street, +# Boston, MA 02110-1301, USA. +# + +include $(top_srcdir)/Makefile.common + +grvocoderpythondir = $(grpythondir)/vocoder +grvocoderpython_PYTHON = \ + __init__.py diff --git a/gnuradio-core/src/python/gnuradio/vocoder/__init__.py b/gnuradio-core/src/python/gnuradio/vocoder/__init__.py new file mode 100644 index 000000000..a4917cf64 --- /dev/null +++ b/gnuradio-core/src/python/gnuradio/vocoder/__init__.py @@ -0,0 +1 @@ +# make this a package |