From 7361ce25f30ddfcc7538fec4a8b4cb9044201a03 Mon Sep 17 00:00:00 2001 From: Alexandru Csete Date: Thu, 8 Mar 2012 15:25:58 -0800 Subject: Initial import of out-of-tree files from Alexandru Csete --- gr-fcd/Makefile.am | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 gr-fcd/Makefile.am (limited to 'gr-fcd/Makefile.am') diff --git a/gr-fcd/Makefile.am b/gr-fcd/Makefile.am new file mode 100644 index 000000000..854423d2a --- /dev/null +++ b/gr-fcd/Makefile.am @@ -0,0 +1,41 @@ +# +# Copyright 2004,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 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. +# + +ACLOCAL_AMFLAGS = -I config + +include $(top_srcdir)/Makefile.common + +EXTRA_DIST = \ + bootstrap \ + configure \ + config.h.in \ + Makefile.swig \ + Makefile.swig.gen.t \ + version.sh \ + README \ + README.hacking + +SUBDIRS = config lib swig python grc apps doc + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = gnuradio-fcd.pc + +DISTCLEANFILES += gnuradio-fcd*.tar.gz -- cgit From 15b215a42472c478a8b45e1be293de3eca6d2ee9 Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Thu, 8 Mar 2012 16:53:03 -0800 Subject: fcd: convert out-of-tree autotools build to in-tree This still needs doc directory conversion to new documentation system. --- gr-fcd/Makefile.am | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'gr-fcd/Makefile.am') diff --git a/gr-fcd/Makefile.am b/gr-fcd/Makefile.am index 854423d2a..370c7ecff 100644 --- a/gr-fcd/Makefile.am +++ b/gr-fcd/Makefile.am @@ -1,5 +1,5 @@ # -# Copyright 2004,2008,2009 Free Software Foundation, Inc. +# Copyright 2012 Software Foundation, Inc. # # This file is part of GNU Radio # @@ -24,18 +24,11 @@ ACLOCAL_AMFLAGS = -I config include $(top_srcdir)/Makefile.common EXTRA_DIST = \ - bootstrap \ - configure \ - config.h.in \ - Makefile.swig \ - Makefile.swig.gen.t \ - version.sh \ + AUTHORS \ README \ README.hacking -SUBDIRS = config lib swig python grc apps doc +SUBDIRS = lib swig python grc apps #doc pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = gnuradio-fcd.pc - -DISTCLEANFILES += gnuradio-fcd*.tar.gz -- cgit From 41f1464634963ed4327e89fe516c0ba7c0d78331 Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Sat, 10 Mar 2012 09:56:21 -0800 Subject: fcd: incorporated into Doxygen docs --- gr-fcd/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gr-fcd/Makefile.am') diff --git a/gr-fcd/Makefile.am b/gr-fcd/Makefile.am index 370c7ecff..4d5094c01 100644 --- a/gr-fcd/Makefile.am +++ b/gr-fcd/Makefile.am @@ -28,7 +28,7 @@ EXTRA_DIST = \ README \ README.hacking -SUBDIRS = lib swig python grc apps #doc +SUBDIRS = lib swig python grc apps doc pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = gnuradio-fcd.pc -- cgit From d8ad6e8e04226d9edf0a7d6d06955ed5db68dfab Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Sat, 10 Mar 2012 11:09:10 -0800 Subject: fcd: moved items to current layout standard * Public header files moved from lib/ to include/fcd * Contents of apps/ moved to examples/ to get into gnuradio/examples, apps for programs to be installed into $PREFIX/bin --- gr-fcd/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gr-fcd/Makefile.am') diff --git a/gr-fcd/Makefile.am b/gr-fcd/Makefile.am index 4d5094c01..092634f29 100644 --- a/gr-fcd/Makefile.am +++ b/gr-fcd/Makefile.am @@ -28,7 +28,7 @@ EXTRA_DIST = \ README \ README.hacking -SUBDIRS = lib swig python grc apps doc +SUBDIRS = lib swig python grc examples doc pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = gnuradio-fcd.pc -- cgit From e383cfe2674fa6682a1392af8d9b9f090af1aec5 Mon Sep 17 00:00:00 2001 From: Tom Rondeau Date: Tue, 13 Mar 2012 17:05:13 -0700 Subject: fcd: fixes for distcheck --- gr-fcd/Makefile.am | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'gr-fcd/Makefile.am') diff --git a/gr-fcd/Makefile.am b/gr-fcd/Makefile.am index 092634f29..85d5f9a9b 100644 --- a/gr-fcd/Makefile.am +++ b/gr-fcd/Makefile.am @@ -24,11 +24,9 @@ ACLOCAL_AMFLAGS = -I config include $(top_srcdir)/Makefile.common EXTRA_DIST = \ - AUTHORS \ - README \ - README.hacking + AUTHORS -SUBDIRS = lib swig python grc examples doc +SUBDIRS = lib include swig python grc examples doc pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = gnuradio-fcd.pc -- cgit