[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] r10818 - in gnuradio/branches/developers/jcorgan/cpphi
From: |
jcorgan |
Subject: |
[Commit-gnuradio] r10818 - in gnuradio/branches/developers/jcorgan/cpphier: config gnuradio-core/src/lib gnuradio-core/src/lib/hier |
Date: |
Mon, 13 Apr 2009 12:56:33 -0600 (MDT) |
Author: jcorgan
Date: 2009-04-13 12:56:33 -0600 (Mon, 13 Apr 2009)
New Revision: 10818
Added:
gnuradio/branches/developers/jcorgan/cpphier/gnuradio-core/src/lib/hier/
gnuradio/branches/developers/jcorgan/cpphier/gnuradio-core/src/lib/hier/Makefile.am
Modified:
gnuradio/branches/developers/jcorgan/cpphier/config/grc_gnuradio_core.m4
gnuradio/branches/developers/jcorgan/cpphier/gnuradio-core/src/lib/Makefile.am
Log:
Build infrastructure for C++ hier blocks.
Modified:
gnuradio/branches/developers/jcorgan/cpphier/config/grc_gnuradio_core.m4
===================================================================
--- gnuradio/branches/developers/jcorgan/cpphier/config/grc_gnuradio_core.m4
2009-04-13 18:27:32 UTC (rev 10817)
+++ gnuradio/branches/developers/jcorgan/cpphier/config/grc_gnuradio_core.m4
2009-04-13 18:56:33 UTC (rev 10818)
@@ -1,4 +1,4 @@
-dnl Copyright 2001,2002,2003,2004,2005,2006,2007,2008,2009 Free Software
Foundation, Inc.
+ dnl Copyright 2001,2002,2003,2004,2005,2006,2007,2008,2009 Free
Software Foundation, Inc.
dnl
dnl This file is part of GNU Radio
dnl
@@ -61,6 +61,7 @@
-I\${abs_top_srcdir}/gnuradio-core/src/lib/io \
-I\${abs_top_srcdir}/gnuradio-core/src/lib/g72x \
-I\${abs_top_srcdir}/gnuradio-core/src/lib/swig \
+-I\${abs_top_srcdir}/gnuradio-core/src/lib/hier \
-I\${abs_top_builddir}/gnuradio-core/src/lib/swig \
\$(FFTW3F_CFLAGS) \
\$(GSL_CFLAGS)"
@@ -96,6 +97,7 @@
gnuradio-core/src/lib/reed-solomon/Makefile \
gnuradio-core/src/lib/viterbi/Makefile \
gnuradio-core/src/lib/runtime/Makefile \
+ gnuradio-core/src/lib/hier/Makefile \
gnuradio-core/src/lib/swig/Makefile \
gnuradio-core/src/python/Makefile \
gnuradio-core/src/python/bin/Makefile \
Modified:
gnuradio/branches/developers/jcorgan/cpphier/gnuradio-core/src/lib/Makefile.am
===================================================================
---
gnuradio/branches/developers/jcorgan/cpphier/gnuradio-core/src/lib/Makefile.am
2009-04-13 18:27:32 UTC (rev 10817)
+++
gnuradio/branches/developers/jcorgan/cpphier/gnuradio-core/src/lib/Makefile.am
2009-04-13 18:56:33 UTC (rev 10818)
@@ -24,7 +24,7 @@
## Process this file with automake to produce Makefile.in
# We've got to build . before swig
-SUBDIRS = missing runtime filter viterbi general gengen g72x reed-solomon io .
swig
+SUBDIRS = missing runtime filter viterbi general gengen g72x reed-solomon io
hier . swig
# generate libgnuradio-core.la from the convenience libraries in subdirs
@@ -48,6 +48,7 @@
missing/libmissing.la \
reed-solomon/librs.la \
runtime/libruntime.la \
+ hier/libhier.la \
$(OMNITHREAD_LA) \
$(GRUEL_LA) \
$(FFTW3F_LIBS) \
Property changes on:
gnuradio/branches/developers/jcorgan/cpphier/gnuradio-core/src/lib/hier
___________________________________________________________________
Added: svn:ignore
+ Makefile
Makefile.in
Added:
gnuradio/branches/developers/jcorgan/cpphier/gnuradio-core/src/lib/hier/Makefile.am
===================================================================
---
gnuradio/branches/developers/jcorgan/cpphier/gnuradio-core/src/lib/hier/Makefile.am
(rev 0)
+++
gnuradio/branches/developers/jcorgan/cpphier/gnuradio-core/src/lib/hier/Makefile.am
2009-04-13 18:56:33 UTC (rev 10818)
@@ -0,0 +1,33 @@
+#
+# Copyright 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.
+#
+
+include $(top_srcdir)/Makefile.common
+
+
+AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(WITH_INCLUDES)
+
+noinst_LTLIBRARIES = libhier.la
+
+libhier_la_SOURCES =
+
+grinclude_HEADERS =
+
+
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] r10818 - in gnuradio/branches/developers/jcorgan/cpphier: config gnuradio-core/src/lib gnuradio-core/src/lib/hier,
jcorgan <=