From b9b5318101d596b8f06cf5640ddceb90bdb9235c Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Tue, 8 Mar 2011 23:13:13 -0800 Subject: audio: skeleton for gr-audio component --- gr-audio/include/Makefile.am | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 gr-audio/include/Makefile.am (limited to 'gr-audio/include/Makefile.am') diff --git a/gr-audio/include/Makefile.am b/gr-audio/include/Makefile.am new file mode 100644 index 000000000..d5b319c36 --- /dev/null +++ b/gr-audio/include/Makefile.am @@ -0,0 +1,22 @@ +# +# 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 -- cgit From 77da72f511647d458b62ffefaa94662b78d7f7d3 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Wed, 9 Mar 2011 00:52:55 -0800 Subject: audio: added audio factory registry and top level includes --- gr-audio/include/Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gr-audio/include/Makefile.am') diff --git a/gr-audio/include/Makefile.am b/gr-audio/include/Makefile.am index d5b319c36..a4db27d08 100644 --- a/gr-audio/include/Makefile.am +++ b/gr-audio/include/Makefile.am @@ -20,3 +20,8 @@ # include $(top_srcdir)/Makefile.common + +grinclude_HEADERS = \ + gr_audio_api.h \ + gr_audio_source.h \ + gr_audio_sink.h -- cgit