summaryrefslogtreecommitdiff
path: root/gr-vocoder
diff options
context:
space:
mode:
Diffstat (limited to 'gr-vocoder')
-rw-r--r--gr-vocoder/.gitignore3
-rw-r--r--gr-vocoder/Makefile.am31
-rw-r--r--gr-vocoder/apps/.gitignore2
-rw-r--r--gr-vocoder/apps/Makefile.am24
-rw-r--r--gr-vocoder/doc/.gitignore2
-rw-r--r--gr-vocoder/doc/Makefile.am24
-rw-r--r--gr-vocoder/examples/.gitignore3
-rw-r--r--gr-vocoder/examples/Makefile.am24
-rw-r--r--gr-vocoder/gnuradio-vocoder.pc.in11
-rw-r--r--gr-vocoder/grc/.gitignore7
-rw-r--r--gr-vocoder/grc/Makefile.am24
-rw-r--r--gr-vocoder/include/.gitignore2
-rw-r--r--gr-vocoder/include/Makefile.am24
-rw-r--r--gr-vocoder/lib/.gitignore7
-rw-r--r--gr-vocoder/lib/Makefile.am24
-rw-r--r--gr-vocoder/python/.gitignore3
-rw-r--r--gr-vocoder/python/Makefile.am24
-rw-r--r--gr-vocoder/swig/.gitignore2
-rw-r--r--gr-vocoder/swig/Makefile.am24
19 files changed, 265 insertions, 0 deletions
diff --git a/gr-vocoder/.gitignore b/gr-vocoder/.gitignore
new file mode 100644
index 000000000..a37fc0c1a
--- /dev/null
+++ b/gr-vocoder/.gitignore
@@ -0,0 +1,3 @@
+/Makefile
+/Makefile.in
+/*.pc
diff --git a/gr-vocoder/Makefile.am b/gr-vocoder/Makefile.am
new file mode 100644
index 000000000..c280358a8
--- /dev/null
+++ b/gr-vocoder/Makefile.am
@@ -0,0 +1,31 @@
+#
+# Copyright 2011 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
+
+SUBDIRS = include lib python swig grc apps examples doc
+
+if PYTHON
+SUBDIRS += python swig
+endif
+
+pkgconfigdir = $(libdir)/pkgconfig
+dist_pkgconfig_DATA = gnuradio-vocoder.pc
diff --git a/gr-vocoder/apps/.gitignore b/gr-vocoder/apps/.gitignore
new file mode 100644
index 000000000..b336cc7ce
--- /dev/null
+++ b/gr-vocoder/apps/.gitignore
@@ -0,0 +1,2 @@
+/Makefile
+/Makefile.in
diff --git a/gr-vocoder/apps/Makefile.am b/gr-vocoder/apps/Makefile.am
new file mode 100644
index 000000000..b1c7b44d5
--- /dev/null
+++ b/gr-vocoder/apps/Makefile.am
@@ -0,0 +1,24 @@
+#
+# Copyright 2011 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
+
+SUBDIRS =
diff --git a/gr-vocoder/doc/.gitignore b/gr-vocoder/doc/.gitignore
new file mode 100644
index 000000000..b336cc7ce
--- /dev/null
+++ b/gr-vocoder/doc/.gitignore
@@ -0,0 +1,2 @@
+/Makefile
+/Makefile.in
diff --git a/gr-vocoder/doc/Makefile.am b/gr-vocoder/doc/Makefile.am
new file mode 100644
index 000000000..b1c7b44d5
--- /dev/null
+++ b/gr-vocoder/doc/Makefile.am
@@ -0,0 +1,24 @@
+#
+# Copyright 2011 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
+
+SUBDIRS =
diff --git a/gr-vocoder/examples/.gitignore b/gr-vocoder/examples/.gitignore
new file mode 100644
index 000000000..0a864cc38
--- /dev/null
+++ b/gr-vocoder/examples/.gitignore
@@ -0,0 +1,3 @@
+/Makefile
+/Makefile.in
+
diff --git a/gr-vocoder/examples/Makefile.am b/gr-vocoder/examples/Makefile.am
new file mode 100644
index 000000000..b1c7b44d5
--- /dev/null
+++ b/gr-vocoder/examples/Makefile.am
@@ -0,0 +1,24 @@
+#
+# Copyright 2011 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
+
+SUBDIRS =
diff --git a/gr-vocoder/gnuradio-vocoder.pc.in b/gr-vocoder/gnuradio-vocoder.pc.in
new file mode 100644
index 000000000..7ff4420b6
--- /dev/null
+++ b/gr-vocoder/gnuradio-vocoder.pc.in
@@ -0,0 +1,11 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: gnuradio-vocoder
+Description: GNU Radio blocks implementing voice codecs
+Requires: gnuradio-core
+Version: @LIBVER@
+Libs: -L${libdir} -lgnuradio-vocoder
+Cflags: -I${includedir}
diff --git a/gr-vocoder/grc/.gitignore b/gr-vocoder/grc/.gitignore
new file mode 100644
index 000000000..d2e2e9ce8
--- /dev/null
+++ b/gr-vocoder/grc/.gitignore
@@ -0,0 +1,7 @@
+/Makefile
+/Makefile.in
+/.libs
+/.deps
+/gnuradio
+/guile
+/python
diff --git a/gr-vocoder/grc/Makefile.am b/gr-vocoder/grc/Makefile.am
new file mode 100644
index 000000000..b1c7b44d5
--- /dev/null
+++ b/gr-vocoder/grc/Makefile.am
@@ -0,0 +1,24 @@
+#
+# Copyright 2011 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
+
+SUBDIRS =
diff --git a/gr-vocoder/include/.gitignore b/gr-vocoder/include/.gitignore
new file mode 100644
index 000000000..b336cc7ce
--- /dev/null
+++ b/gr-vocoder/include/.gitignore
@@ -0,0 +1,2 @@
+/Makefile
+/Makefile.in
diff --git a/gr-vocoder/include/Makefile.am b/gr-vocoder/include/Makefile.am
new file mode 100644
index 000000000..b1c7b44d5
--- /dev/null
+++ b/gr-vocoder/include/Makefile.am
@@ -0,0 +1,24 @@
+#
+# Copyright 2011 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
+
+SUBDIRS =
diff --git a/gr-vocoder/lib/.gitignore b/gr-vocoder/lib/.gitignore
new file mode 100644
index 000000000..d2e2e9ce8
--- /dev/null
+++ b/gr-vocoder/lib/.gitignore
@@ -0,0 +1,7 @@
+/Makefile
+/Makefile.in
+/.libs
+/.deps
+/gnuradio
+/guile
+/python
diff --git a/gr-vocoder/lib/Makefile.am b/gr-vocoder/lib/Makefile.am
new file mode 100644
index 000000000..b1c7b44d5
--- /dev/null
+++ b/gr-vocoder/lib/Makefile.am
@@ -0,0 +1,24 @@
+#
+# Copyright 2011 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
+
+SUBDIRS =
diff --git a/gr-vocoder/python/.gitignore b/gr-vocoder/python/.gitignore
new file mode 100644
index 000000000..604b402c5
--- /dev/null
+++ b/gr-vocoder/python/.gitignore
@@ -0,0 +1,3 @@
+/Makefile
+/Makefile.in
+/run_tests
diff --git a/gr-vocoder/python/Makefile.am b/gr-vocoder/python/Makefile.am
new file mode 100644
index 000000000..b1c7b44d5
--- /dev/null
+++ b/gr-vocoder/python/Makefile.am
@@ -0,0 +1,24 @@
+#
+# Copyright 2011 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
+
+SUBDIRS =
diff --git a/gr-vocoder/swig/.gitignore b/gr-vocoder/swig/.gitignore
new file mode 100644
index 000000000..b336cc7ce
--- /dev/null
+++ b/gr-vocoder/swig/.gitignore
@@ -0,0 +1,2 @@
+/Makefile
+/Makefile.in
diff --git a/gr-vocoder/swig/Makefile.am b/gr-vocoder/swig/Makefile.am
new file mode 100644
index 000000000..b1c7b44d5
--- /dev/null
+++ b/gr-vocoder/swig/Makefile.am
@@ -0,0 +1,24 @@
+#
+# Copyright 2011 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
+
+SUBDIRS =