From 51d338e2b210692230d99d6c22dc6277c286fa17 Mon Sep 17 00:00:00 2001 From: Alexandru Csete Date: Fri, 8 Apr 2011 23:37:26 +0200 Subject: [PATCH] Updated for FCD. --- AUTHORS | 3 ++- ChangeLog | 26 +------------------------- Makefile.am | 2 +- Makefile.common | 5 ++++- configure.ac | 6 ++++-- 5 files changed, 12 insertions(+), 30 deletions(-) diff --git a/AUTHORS b/AUTHORS index ee4560a..116821f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1 +1,2 @@ -Eric Blossom +Alexandryu Csete +Based on the "howto" template by Eric Blossom diff --git a/ChangeLog b/ChangeLog index 4b6c4f9..a8acdba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,25 +1 @@ -# -# Copyright 2001,2002,2003,2004,2005,2006,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. -# - -For the blow by blow changes for each file, please consult -http://gnuradio.org/trac/timeline - -It's got everything that used to be in here ;) +https://github.com/csete/gr-fcd/commits/master diff --git a/Makefile.am b/Makefile.am index 4ceb210..3841636 100644 --- a/Makefile.am +++ b/Makefile.am @@ -38,4 +38,4 @@ SUBDIRS = config lib swig python grc apps pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = -DISTCLEANFILES += gr-howto-write-a-block*.tar.gz +DISTCLEANFILES += gr-fcd*.tar.gz diff --git a/Makefile.common b/Makefile.common index fca6133..3d5e675 100644 --- a/Makefile.common +++ b/Makefile.common @@ -31,7 +31,7 @@ STAMPS = # The name of this "out-of-tree" module -modname = howto +modname = fcd # Make rebuilds less verbose with stuff we can safely ignore # about GNU make only extensions. @@ -50,6 +50,7 @@ AM_CPPFLAGS = \ $(PYTHON_CPPFLAGS) \ $(CPPUNIT_INCLUDES) \ $(GNURADIO_CORE_CPPFLAGS) + $(GNURADIO_AUDIO_CPPFLAGS) # these are used by both SWIG and CXX STD_DEFINES_AND_INCLUDES = \ @@ -57,6 +58,8 @@ STD_DEFINES_AND_INCLUDES = \ -I$(abs_top_srcdir)/lib \ -I$(GNURADIO_CORE_INCLUDEDIR) \ -I$(GNURADIO_CORE_INCLUDEDIR)/swig + -I$(GNURADIO_AUDIO_INCLUDEDIR) \ + -I$(GNURADIO_AUDIO_INCLUDEDIR)/swig # includes modincludedir = $(includedir)/$(modname) diff --git a/configure.ac b/configure.ac index ef5c98e..87bc663 100644 --- a/configure.ac +++ b/configure.ac @@ -37,12 +37,14 @@ AC_CANONICAL_TARGET GR_VERSION dnl ustar required to have pathnames > 99 chars _AM_SET_OPTION([tar-ustar]) -AM_INIT_AUTOMAKE(gr-howto-write-a-block,$RELEASE) +AM_INIT_AUTOMAKE(gr-fcd,$RELEASE) dnl This is kind of non-standard, but it sure shortens up this file :-) +dnl FIXME: Include gnuradio-audio in GR_ASTANDALONE m4_include([config/gr_standalone.m4]) GR_STANDALONE + dnl Check for any libraries you need dnl AC_CHECK_LIBRARY @@ -97,4 +99,4 @@ AC_CONFIG_COMMANDS([run_tests], AC_OUTPUT -echo Configured gr-howto-write-a-block release $RELEASE for build. +echo Configured gr-fcd release $RELEASE for build.