[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] r8216 - in gnuradio/branches/developers/eb/gcell: . co
From: |
eb |
Subject: |
[Commit-gnuradio] r8216 - in gnuradio/branches/developers/eb/gcell: . config gr-gcell gr-gcell/src gr-gcell/src/examples |
Date: |
Wed, 16 Apr 2008 22:54:52 -0600 (MDT) |
Author: eb
Date: 2008-04-16 22:54:51 -0600 (Wed, 16 Apr 2008)
New Revision: 8216
Added:
gnuradio/branches/developers/eb/gcell/config/grc_gr_gcell.m4
gnuradio/branches/developers/eb/gcell/gr-gcell/
gnuradio/branches/developers/eb/gcell/gr-gcell/Makefile.am
gnuradio/branches/developers/eb/gcell/gr-gcell/src/
gnuradio/branches/developers/eb/gcell/gr-gcell/src/Makefile.am
gnuradio/branches/developers/eb/gcell/gr-gcell/src/examples/
gnuradio/branches/developers/eb/gcell/gr-gcell/src/examples/Makefile.am
gnuradio/branches/developers/eb/gcell/gr-gcell/src/run_tests.in
Modified:
gnuradio/branches/developers/eb/gcell/config/Makefile.am
gnuradio/branches/developers/eb/gcell/configure.ac
Log:
directory structure for gr-gcell
Modified: gnuradio/branches/developers/eb/gcell/config/Makefile.am
===================================================================
--- gnuradio/branches/developers/eb/gcell/config/Makefile.am 2008-04-17
03:26:01 UTC (rev 8215)
+++ gnuradio/branches/developers/eb/gcell/config/Makefile.am 2008-04-17
04:54:51 UTC (rev 8216)
@@ -42,6 +42,7 @@
grc_gr_audio_portaudio.m4 \
grc_gr_audio_windows.m4 \
grc_gr_comedi.m4 \
+ grc_gr_gcell.m4 \
grc_gr_gpio.m4 \
grc_gr_gsm_fr_vocoder.m4 \
grc_gr_radar_mono.m4 \
Added: gnuradio/branches/developers/eb/gcell/config/grc_gr_gcell.m4
===================================================================
--- gnuradio/branches/developers/eb/gcell/config/grc_gr_gcell.m4
(rev 0)
+++ gnuradio/branches/developers/eb/gcell/config/grc_gr_gcell.m4
2008-04-17 04:54:51 UTC (rev 8216)
@@ -0,0 +1,38 @@
+dnl Copyright 2001,2002,2003,2004,2005,2006,2008 Free Software Foundation, Inc.
+dnl
+dnl This file is part of GNU Radio
+dnl
+dnl GNU Radio is free software; you can redistribute it and/or modify
+dnl it under the terms of the GNU General Public License as published by
+dnl the Free Software Foundation; either version 3, or (at your option)
+dnl any later version.
+dnl
+dnl GNU Radio is distributed in the hope that it will be useful,
+dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
+dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+dnl GNU General Public License for more details.
+dnl
+dnl You should have received a copy of the GNU General Public License
+dnl along with GNU Radio; see the file COPYING. If not, write to
+dnl the Free Software Foundation, Inc., 51 Franklin Street,
+dnl Boston, MA 02110-1301, USA.
+
+AC_DEFUN([GRC_GR_GCELL],[
+ GRC_ENABLE(gr-gcell)
+
+ dnl Don't do gr-gcell if gcell or gnuradio-core skipped
+ GRC_CHECK_DEPENDENCY(gr-gcell, gcell)
+ GRC_CHECK_DEPENDENCY(gr-gcell, gnuradio-core)
+
+ AC_CONFIG_FILES([ \
+ gr-gcell/Makefile \
+ gr-gcell/src/Makefile \
+ gr-gcell/src/examples/Makefile \
+ gr-gcell/src/run_tests \
+ ])
+
+ GRC_BUILD_CONDITIONAL(gr-gcell,[
+ dnl run_tests is created from run_tests.in. Make it executable.
+ AC_CONFIG_COMMANDS([run_tests_gcell], [chmod +x gr-gcell/src/run_tests])
+ ])
+])
Property changes on:
gnuradio/branches/developers/eb/gcell/config/grc_gr_gcell.m4
___________________________________________________________________
Name: svn:eol-style
+ LF
Modified: gnuradio/branches/developers/eb/gcell/configure.ac
===================================================================
--- gnuradio/branches/developers/eb/gcell/configure.ac 2008-04-17 03:26:01 UTC
(rev 8215)
+++ gnuradio/branches/developers/eb/gcell/configure.ac 2008-04-17 04:54:51 UTC
(rev 8216)
@@ -245,6 +245,7 @@
GRC_GNURADIO_CORE
GRC_USRP
GRC_GR_USRP dnl this must come after GRC_USRP
+GRC_GR_GCELL dnl this must come after GRC_GCELL and
GRC_GNURADIO_CORE
GRC_GR_MSDD6000
GRC_GR_AUDIO_ALSA
GRC_GR_AUDIO_JACK
Property changes on: gnuradio/branches/developers/eb/gcell/gr-gcell
___________________________________________________________________
Name: svn:ignore
+ *.cache
*.la
*.lo
*.pc
.deps
.la
.libs
.lo
Makefile
Makefile.in
aclocal.m4
autom4te.cache
config.cache
config.h
config.h.in
config.log
config.status
configure
depcomp
install-sh
libtool
ltmain.sh
make.log
missing
missing
mkinstalldirs
py-compile
stamp-h
stamp-h.in
stamp-h1
stamp-h1.in
stamp-h2.in
Added: gnuradio/branches/developers/eb/gcell/gr-gcell/Makefile.am
===================================================================
--- gnuradio/branches/developers/eb/gcell/gr-gcell/Makefile.am
(rev 0)
+++ gnuradio/branches/developers/eb/gcell/gr-gcell/Makefile.am 2008-04-17
04:54:51 UTC (rev 8216)
@@ -0,0 +1,24 @@
+#
+# Copyright 2008 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 this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+#
+
+include $(top_srcdir)/Makefile.common
+
+SUBDIRS = src
+
Property changes on: gnuradio/branches/developers/eb/gcell/gr-gcell/Makefile.am
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: gnuradio/branches/developers/eb/gcell/gr-gcell/src
___________________________________________________________________
Name: svn:ignore
+ *.cache
*.la
*.lo
*.pc
.deps
.la
.libs
.lo
Makefile
Makefile.in
aclocal.m4
autom4te.cache
config.cache
config.h
config.h.in
config.log
config.status
configure
depcomp
install-sh
libtool
ltmain.sh
make.log
missing
missing
mkinstalldirs
py-compile
stamp-h
stamp-h.in
stamp-h1
stamp-h1.in
stamp-h2.in
Added: gnuradio/branches/developers/eb/gcell/gr-gcell/src/Makefile.am
===================================================================
--- gnuradio/branches/developers/eb/gcell/gr-gcell/src/Makefile.am
(rev 0)
+++ gnuradio/branches/developers/eb/gcell/gr-gcell/src/Makefile.am
2008-04-17 04:54:51 UTC (rev 8216)
@@ -0,0 +1,22 @@
+#
+# Copyright 2008 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 this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+#
+
+SUBDIRS = . examples
+
Property changes on:
gnuradio/branches/developers/eb/gcell/gr-gcell/src/Makefile.am
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: gnuradio/branches/developers/eb/gcell/gr-gcell/src/examples
___________________________________________________________________
Name: svn:ignore
+ *.cache
*.la
*.lo
*.pc
.deps
.la
.libs
.lo
Makefile
Makefile.in
aclocal.m4
autom4te.cache
config.cache
config.h
config.h.in
config.log
config.status
configure
depcomp
install-sh
libtool
ltmain.sh
make.log
missing
missing
mkinstalldirs
py-compile
stamp-h
stamp-h.in
stamp-h1
stamp-h1.in
stamp-h2.in
Added: gnuradio/branches/developers/eb/gcell/gr-gcell/src/examples/Makefile.am
===================================================================
--- gnuradio/branches/developers/eb/gcell/gr-gcell/src/examples/Makefile.am
(rev 0)
+++ gnuradio/branches/developers/eb/gcell/gr-gcell/src/examples/Makefile.am
2008-04-17 04:54:51 UTC (rev 8216)
@@ -0,0 +1,42 @@
+#
+# Copyright 2008 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
+
+#EXTRA_DIST = \
+# README \
+# fsm_utils.py
+
+
+ourdatadir = $(exampledir)/gcell
+ourdata_DATA = $(EXTRA_DIST)
+
+# Make example scripts with #! executable
+install-data-local: install-ourdataDATA
+ for i in `find $(ourdatadir) -type f ! -perm 755`; do \
+ if head -1 $$i | grep -q '^#!'; then \
+ chmod 755 $$i; \
+ echo "made executable: $$i"; \
+ fi; \
+ done
+
+MOSTLYCLEANFILES = *.pyc
+
Property changes on:
gnuradio/branches/developers/eb/gcell/gr-gcell/src/examples/Makefile.am
___________________________________________________________________
Name: svn:eol-style
+ native
Added: gnuradio/branches/developers/eb/gcell/gr-gcell/src/run_tests.in
===================================================================
--- gnuradio/branches/developers/eb/gcell/gr-gcell/src/run_tests.in
(rev 0)
+++ gnuradio/branches/developers/eb/gcell/gr-gcell/src/run_tests.in
2008-04-17 04:54:51 UTC (rev 8216)
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+# 1st parameter is absolute path to component source directory
+# 2nd parameter is absolute path to component build directory
+# 3rd parameter is path to Python QA directory
+
address@hidden@/run_tests.sh \
+ @abs_top_srcdir@/gr-gcell \
+ @abs_top_builddir@/gr-gcell \
+ @srcdir@
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] r8216 - in gnuradio/branches/developers/eb/gcell: . config gr-gcell gr-gcell/src gr-gcell/src/examples,
eb <=