commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r4864 - in gnuradio/branches/developers/jcorgan/sar-fe


From: jcorgan
Subject: [Commit-gnuradio] r4864 - in gnuradio/branches/developers/jcorgan/sar-fe: . config gr-sar-fe gr-sar-fe/doc gr-sar-fe/src gr-sar-fe/src/fpga gr-sar-fe/src/lib gr-sar-fe/src/python
Date: Tue, 3 Apr 2007 17:58:40 -0600 (MDT)

Author: jcorgan
Date: 2007-04-03 17:58:40 -0600 (Tue, 03 Apr 2007)
New Revision: 4864

Added:
   gnuradio/branches/developers/jcorgan/sar-fe/config/grc_gr_sar_fe.m4
   gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/
   gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/Makefile.am
   gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/doc/
   gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/doc/Makefile.am
   gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/
   gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/Makefile.am
   gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/fpga/
   gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/fpga/Makefile.am
   gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/lib/
   gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/lib/Makefile.am
   gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/python/
   gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/python/Makefile.am
   
gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/python/qa_nothing.py
   gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/python/run_tests.in
Modified:
   gnuradio/branches/developers/jcorgan/sar-fe/config/Makefile.am
   gnuradio/branches/developers/jcorgan/sar-fe/configure.ac
Log:
Created skeleton top-level component gr-sar-fe.

Modified: gnuradio/branches/developers/jcorgan/sar-fe/config/Makefile.am
===================================================================
--- gnuradio/branches/developers/jcorgan/sar-fe/config/Makefile.am      
2007-04-03 22:39:02 UTC (rev 4863)
+++ gnuradio/branches/developers/jcorgan/sar-fe/config/Makefile.am      
2007-04-03 23:58:40 UTC (rev 4864)
@@ -46,6 +46,7 @@
        grc_gr_radar.m4 \
        grc_gr_radio_astronomy.m4 \
        grc_gr_rdf.m4 \
+       grc_gr_sar_fe.m4 \
        grc_gr_trellis.m4 \
        grc_gr_usrp.m4 \
        grc_gr_video_sdl.m4 \

Added: gnuradio/branches/developers/jcorgan/sar-fe/config/grc_gr_sar_fe.m4
===================================================================
--- gnuradio/branches/developers/jcorgan/sar-fe/config/grc_gr_sar_fe.m4         
                (rev 0)
+++ gnuradio/branches/developers/jcorgan/sar-fe/config/grc_gr_sar_fe.m4 
2007-04-03 23:58:40 UTC (rev 4864)
@@ -0,0 +1,47 @@
+dnl Copyright 2007 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 2, 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_SAR_FE],[
+    GRC_ENABLE([gr-sar-fe])
+
+    AC_CONFIG_FILES([ \
+        gr-sar-fe/Makefile \
+        gr-sar-fe/doc/Makefile \
+        gr-sar-fe/src/Makefile \
+        gr-sar-fe/src/fpga/Makefile \
+        gr-sar-fe/src/lib/Makefile \
+        gr-sar-fe/src/python/Makefile \
+         gr-sar-fe/src/python/run_tests
+    ])
+
+    passed=yes
+    # Don't do gr-sar-fe if usrp skipped
+    for dir in $skipped_dirs
+    do
+       if test x$dir = xusrp; then
+           AC_MSG_RESULT([Component gr-sar-fe requires usrp, which is not 
being built.])
+           passed=no
+       fi
+    done
+
+    GRC_BUILD_CONDITIONAL([gr-sar-fe],[
+       dnl run_tests is created from run_tests.in.  Make it executable.
+       AC_CONFIG_COMMANDS([run_tests_sar_fe], [chmod +x 
gr-sar-fe/src/python/run_tests])
+    ])
+])


Property changes on: 
gnuradio/branches/developers/jcorgan/sar-fe/config/grc_gr_sar_fe.m4
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: gnuradio/branches/developers/jcorgan/sar-fe/configure.ac
===================================================================
--- gnuradio/branches/developers/jcorgan/sar-fe/configure.ac    2007-04-03 
22:39:02 UTC (rev 4863)
+++ gnuradio/branches/developers/jcorgan/sar-fe/configure.ac    2007-04-03 
23:58:40 UTC (rev 4864)
@@ -220,6 +220,7 @@
 GRC_EZDOP              
 GRC_GR_EZDOP                   dnl this must come after GRC_EZDOP
 GRC_GR_RDF
+GRC_GR_SAR_FE                  dnl this must come after GRC_USRP
 GRC_GNURADIO_EXAMPLES          dnl must come last
 
 # Each component is now either to be built, was skipped, or failed dependencies


Property changes on: gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe
___________________________________________________________________
Name: svn:ignore
   + Makefile
Makefile.in


Added: gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/Makefile.am
===================================================================
--- gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/Makefile.am           
                (rev 0)
+++ gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/Makefile.am   
2007-04-03 23:58:40 UTC (rev 4864)
@@ -0,0 +1,24 @@
+#
+# Copyright 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 2, 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
+
+SUBDIRS = src doc


Property changes on: gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/doc
___________________________________________________________________
Name: svn:ignore
   + Makefile
Makefile.in


Added: gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/doc/Makefile.am
===================================================================
--- gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/doc/Makefile.am       
                        (rev 0)
+++ gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/doc/Makefile.am       
2007-04-03 23:58:40 UTC (rev 4864)
@@ -0,0 +1,23 @@
+#
+# Copyright 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 2, 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
+


Property changes on: gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src
___________________________________________________________________
Name: svn:ignore
   + Makefile
Makefile.in


Added: gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/Makefile.am
===================================================================
--- gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/Makefile.am       
                        (rev 0)
+++ gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/Makefile.am       
2007-04-03 23:58:40 UTC (rev 4864)
@@ -0,0 +1,24 @@
+#
+# Copyright 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 2, 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
+
+SUBDIRS = fpga lib python


Property changes on: 
gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/fpga
___________________________________________________________________
Name: svn:ignore
   + Makefile
Makefile.in


Added: 
gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/fpga/Makefile.am
===================================================================
--- gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/fpga/Makefile.am  
                        (rev 0)
+++ gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/fpga/Makefile.am  
2007-04-03 23:58:40 UTC (rev 4864)
@@ -0,0 +1,22 @@
+#
+# Copyright 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 2, 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


Property changes on: 
gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/lib
___________________________________________________________________
Name: svn:ignore
   + Makefile
Makefile.in


Added: gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/lib/Makefile.am
===================================================================
--- gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/lib/Makefile.am   
                        (rev 0)
+++ gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/lib/Makefile.am   
2007-04-03 23:58:40 UTC (rev 4864)
@@ -0,0 +1,22 @@
+#
+# Copyright 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 2, 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


Property changes on: 
gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/python
___________________________________________________________________
Name: svn:ignore
   + Makefile
Makefile.in
run_tests


Added: 
gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/python/Makefile.am
===================================================================
--- 
gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/python/Makefile.am    
                            (rev 0)
+++ 
gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/python/Makefile.am    
    2007-04-03 23:58:40 UTC (rev 4864)
@@ -0,0 +1,22 @@
+#
+# Copyright 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 2, 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

Added: 
gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/python/qa_nothing.py
===================================================================

Added: 
gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/python/run_tests.in
===================================================================
--- 
gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/python/run_tests.in   
                            (rev 0)
+++ 
gnuradio/branches/developers/jcorgan/sar-fe/gr-sar-fe/src/python/run_tests.in   
    2007-04-03 23:58:40 UTC (rev 4864)
@@ -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-sar-fe \
+    @abs_top_builddir@/gr-sar-fe \
+    @srcdir@





reply via email to

[Prev in Thread] Current Thread [Next in Thread]