commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] r7121 - in gnuradio/branches/developers/jcorgan/t127:


From: jcorgan
Subject: [Commit-gnuradio] r7121 - in gnuradio/branches/developers/jcorgan/t127: . config usrpdb usrpdb/src
Date: Tue, 11 Dec 2007 21:14:45 -0700 (MST)

Author: jcorgan
Date: 2007-12-11 21:14:45 -0700 (Tue, 11 Dec 2007)
New Revision: 7121

Added:
   gnuradio/branches/developers/jcorgan/t127/config/grc_usrpdb.m4
   gnuradio/branches/developers/jcorgan/t127/usrpdb/
   gnuradio/branches/developers/jcorgan/t127/usrpdb/Makefile.am
   gnuradio/branches/developers/jcorgan/t127/usrpdb/src/
   gnuradio/branches/developers/jcorgan/t127/usrpdb/src/Makefile.am
   gnuradio/branches/developers/jcorgan/t127/usrpdb/usrpdb.pc.in
Modified:
   gnuradio/branches/developers/jcorgan/t127/config/Makefile.am
   gnuradio/branches/developers/jcorgan/t127/configure.ac
Log:
Created stub usrpdb directory in build system.

Modified: gnuradio/branches/developers/jcorgan/t127/config/Makefile.am
===================================================================
--- gnuradio/branches/developers/jcorgan/t127/config/Makefile.am        
2007-12-12 04:05:37 UTC (rev 7120)
+++ gnuradio/branches/developers/jcorgan/t127/config/Makefile.am        
2007-12-12 04:14:45 UTC (rev 7121)
@@ -56,6 +56,7 @@
        gr_check_usrp.m4 \
        grc_pmt.m4 \
        grc_usrp.m4 \
+       grc_usrpdb.m4 \
        gr_doxygen.m4 \
        gr_fortran.m4 \
        gr_gprof.m4 \

Added: gnuradio/branches/developers/jcorgan/t127/config/grc_usrpdb.m4
===================================================================
--- gnuradio/branches/developers/jcorgan/t127/config/grc_usrpdb.m4              
                (rev 0)
+++ gnuradio/branches/developers/jcorgan/t127/config/grc_usrpdb.m4      
2007-12-12 04:14:45 UTC (rev 7121)
@@ -0,0 +1,31 @@
+dnl Copyright 2001,2002,2003,2004,2005,2006,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 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_USRPDB],[
+    GRC_ENABLE([usrpdb])
+
+    AC_CONFIG_FILES([ \
+       usrpdb/Makefile \
+       usrpdb/usrpdb.pc \
+        usrpdb/src/Makefile \
+    ])
+
+    passed=yes
+    GRC_BUILD_CONDITIONAL([usrpdb])
+])

Modified: gnuradio/branches/developers/jcorgan/t127/configure.ac
===================================================================
--- gnuradio/branches/developers/jcorgan/t127/configure.ac      2007-12-12 
04:05:37 UTC (rev 7120)
+++ gnuradio/branches/developers/jcorgan/t127/configure.ac      2007-12-12 
04:14:45 UTC (rev 7121)
@@ -225,6 +225,7 @@
 GRC_PMT
 GRC_MBLOCK                     dnl this must come after GRC_PMT
 GRC_USRP
+GRC_USRPDB
 GRC_GR_USRP                    dnl this must come after GRC_USRP
 GRC_GR_AUDIO_ALSA
 GRC_GR_AUDIO_JACK


Property changes on: gnuradio/branches/developers/jcorgan/t127/usrpdb
___________________________________________________________________
Name: svn:ignore
   + Makefile
Makefile.in
usrpdb.pc


Added: gnuradio/branches/developers/jcorgan/t127/usrpdb/Makefile.am
===================================================================
--- gnuradio/branches/developers/jcorgan/t127/usrpdb/Makefile.am                
                (rev 0)
+++ gnuradio/branches/developers/jcorgan/t127/usrpdb/Makefile.am        
2007-12-12 04:14:45 UTC (rev 7121)
@@ -0,0 +1,29 @@
+#
+# 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 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.
+# 
+
+EXTRA_DIST = \
+       usrpdb.pc.in
+
+SUBDIRS = src
+
+pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA = \
+       usrpdb.pc


Property changes on: gnuradio/branches/developers/jcorgan/t127/usrpdb/src
___________________________________________________________________
Name: svn:ignore
   + Makefile
Makefile.in


Added: gnuradio/branches/developers/jcorgan/t127/usrpdb/src/Makefile.am
===================================================================
--- gnuradio/branches/developers/jcorgan/t127/usrpdb/src/Makefile.am            
                (rev 0)
+++ gnuradio/branches/developers/jcorgan/t127/usrpdb/src/Makefile.am    
2007-12-12 04:14:45 UTC (rev 7121)
@@ -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 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.
+# 
+
+SUBDIRS=
\ No newline at end of file

Added: gnuradio/branches/developers/jcorgan/t127/usrpdb/usrpdb.pc.in
===================================================================
--- gnuradio/branches/developers/jcorgan/t127/usrpdb/usrpdb.pc.in               
                (rev 0)
+++ gnuradio/branches/developers/jcorgan/t127/usrpdb/usrpdb.pc.in       
2007-12-12 04:14:45 UTC (rev 7121)
@@ -0,0 +1,11 @@
address@hidden@
address@hidden@
address@hidden@
address@hidden@
+
+Name: usrp
+Description: USRP daughterboard C++ interface
+Requires:
+Version: @VERSION@
+Libs: -L${libdir} -lusrpdb
+Cflags: -I${includedir} @DEFINES@





reply via email to

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