[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] r9288 - in gnuradio/branches/developers/jblum/grc/grc:
From: |
jblum |
Subject: |
[Commit-gnuradio] r9288 - in gnuradio/branches/developers/jblum/grc/grc: . data data/grc_gnuradio src/grc src/grc/elements src/grc/gui src/grc/gui/elements src/grc_gnuradio src/grc_gnuradio/blks2 src/grc_gnuradio/usrp src/grc_gnuradio/utils src/grc_gnuradio/wxgui |
Date: |
Thu, 14 Aug 2008 11:06:04 -0600 (MDT) |
Author: jblum
Date: 2008-08-14 11:06:02 -0600 (Thu, 14 Aug 2008)
New Revision: 9288
Added:
gnuradio/branches/developers/jblum/grc/grc/Makefile.am
gnuradio/branches/developers/jblum/grc/grc/data/
gnuradio/branches/developers/jblum/grc/grc/data/grc/
gnuradio/branches/developers/jblum/grc/grc/data/grc_gnuradio/
gnuradio/branches/developers/jblum/grc/grc/data/grc_gnuradio/blocks/
gnuradio/branches/developers/jblum/grc/grc/src/grc/Constants.py.in
gnuradio/branches/developers/jblum/grc/grc/src/grc/Makefile.am
gnuradio/branches/developers/jblum/grc/grc/src/grc/elements/Makefile.am
gnuradio/branches/developers/jblum/grc/grc/src/grc/gui/Makefile.am
gnuradio/branches/developers/jblum/grc/grc/src/grc/gui/elements/Makefile.am
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/Constants.py.in
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/Makefile.am
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/blks2/Makefile.am
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/usrp/Makefile.am
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/utils/Makefile.am
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/wxgui/Makefile.am
Removed:
gnuradio/branches/developers/jblum/grc/grc/Makefile
gnuradio/branches/developers/jblum/grc/grc/setup.py
gnuradio/branches/developers/jblum/grc/grc/src/grc/Constants.py
gnuradio/branches/developers/jblum/grc/grc/src/grc/data/
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/Constants.py
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/blocks/
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/data/
Log:
moved data dirs, created makefile.ams
Deleted: gnuradio/branches/developers/jblum/grc/grc/Makefile
Copied: gnuradio/branches/developers/jblum/grc/grc/Makefile.am (from rev 9286,
gnuradio/branches/developers/jblum/grc/grc/Makefile)
===================================================================
--- gnuradio/branches/developers/jblum/grc/grc/Makefile.am
(rev 0)
+++ gnuradio/branches/developers/jblum/grc/grc/Makefile.am 2008-08-14
17:06:02 UTC (rev 9288)
@@ -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.
+#
+
+DOCS_URL = http://www.ece.jhu.edu/~jblum/downloads/grc_gnuradio_docs.tar.gz
+DOCS_DEST = /usr/local/share/doc/
+
+all:
+ @echo Options: install, uninstall, docs_install, docs_uninstall
+
+install:
+ python setup.py install
+ rm -rf build
+
+uninstall:
+ rm -rf `python -c "import grc,os;print os.path.dirname(grc.__file__)"`
+ rm -rf `python -c "import grc_gnuradio,os;print
os.path.dirname(grc_gnuradio.__file__)"`
+ rm -rf `which grc` `which usrp_diagnostics`
+
+docs_install:
+ mkdir -p $(DOCS_DEST)
+ wget $(DOCS_URL) -O - | tar -xzv -C $(DOCS_DEST)
+
+docs_uninstall:
+ rm -rf $(DOCS_DEST)grc*
Copied: gnuradio/branches/developers/jblum/grc/grc/data/grc (from rev 9286,
gnuradio/branches/developers/jblum/grc/grc/src/grc/data)
Copied: gnuradio/branches/developers/jblum/grc/grc/data/grc_gnuradio (from rev
9286, gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/data)
Copied: gnuradio/branches/developers/jblum/grc/grc/data/grc_gnuradio/blocks
(from rev 9286,
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/blocks)
Deleted: gnuradio/branches/developers/jblum/grc/grc/setup.py
Deleted: gnuradio/branches/developers/jblum/grc/grc/src/grc/Constants.py
Copied: gnuradio/branches/developers/jblum/grc/grc/src/grc/Constants.py.in
(from rev 9286, gnuradio/branches/developers/jblum/grc/grc/src/grc/Constants.py)
===================================================================
--- gnuradio/branches/developers/jblum/grc/grc/src/grc/Constants.py.in
(rev 0)
+++ gnuradio/branches/developers/jblum/grc/grc/src/grc/Constants.py.in
2008-08-14 17:06:02 UTC (rev 9288)
@@ -0,0 +1,154 @@
+"""
+Copyright 2008 Free Software Foundation, Inc.
+This file is part of GNU Radio
+
+GNU Radio Companion 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
+of the License, or (at your option) any later version.
+
+GNU Radio Companion 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
+"""
address@hidden grc.Constants
+#Global constants
address@hidden Josh Blum
+
+import os
+
+######################################################################################################
+## Global Titles
+######################################################################################################
+
+##The current version of this code
+VERSION = @gnuradio_version@
+
+##The name to appear in the main window for a flow graph that has not been
saved to file.
+NEW_FLOGRAPH_TITLE = 'untitled'
+
+##The prefix title on the main window.
+MAIN_WINDOW_PREFIX = "GRC"
+
+######################################################################################################
+## Signal block connector lengths
+######################################################################################################
+
+##The length that a connection must extend from the port until the length
depends on the index of the port.
+CONNECTOR_EXTENSION_INITIAL_LENGTH = 11
+
+##The length that a connection must extend from the initial length times the
index of the port, after this length, the connection may have a bend.
+CONNECTOR_EXTENSION_LENGTH = 11
+
+##The length of the connector arrow base in pixels
+CONNECTOR_ARROW_BASE = 13
+
+##The length of the connector arrow height in pixels
+CONNECTOR_ARROW_HEIGHT = 17
+
+######################################################################################################
+## Signal block rotations
+######################################################################################################
+
+##List of possible angles (in degrees) that a block can be rotated to.
+POSSIBLE_ROTATIONS = (0, 90, 180, 270)
+
+##direction of rotation left.
+DIR_LEFT = 'left'
+
+##direction of rotation right.
+DIR_RIGHT = 'right'
+
+######################################################################################################
+## Dimension constraints for the various windows (in pixels)
+######################################################################################################
+
+##main window constraints
+MIN_WINDOW_WIDTH = 600
+MIN_WINDOW_HEIGHT = 400
+
+##dialog constraints
+MIN_DIALOG_WIDTH = 500
+MIN_DIALOG_HEIGHT = 500
+
+##static height of reports window
+REPORTS_WINDOW_HEIGHT = 100
+
+##static width of block selection window
+BLOCK_SELECTION_WINDOW_WIDTH = 200
+
+######################################################################################################
+## Constraints on displayable labels and ports
+######################################################################################################
+
+LABEL_SEPARATION = 3
+LABEL_PADDING_WIDTH = 9
+LABEL_PADDING_HEIGHT = 9
+
+PORT_SEPARATION = 17
+PORT_HEIGHT = 15
+PORT_WIDTH = 25
+PORT_BORDER_SEPARATION = 9
+MAX_NUM_PORTS = 7
+
+PARAM_LABEL_FONT = 'Sans 9.5'
+PARAM_FONT = 'Sans 7.5'
+BLOCK_FONT = 'Sans 8'
+PORT_FONT = 'Sans 7.5'
+
+######################################################################################################
+## Dragging, scrolling, and redrawing constants for the flow graph window in
pixels
+######################################################################################################
+
+##How close can the mouse get to the window border before mouse events are
ignored.
+BORDER_PROXIMITY_SENSITIVITY = 50
+
+##How close the mouse can get to the edge of the visible window before
scrolling is invoked.
+SCROLL_PROXIMITY_SENSITIVITY = 30
+
+##When the window has to be scrolled, move it this distance in the required
direction.
+SCROLL_DISTANCE = 15
+
+##The redrawing sensitivity, how many seconds must pass between motion events
before a redraw?
+MOTION_DETECT_REDRAWING_SENSITIVITY = .02
+
+##How close the mouse click can be to a connection and register a connection
select.
+CONNECTION_SELECT_SENSITIVITY = 5
+
+######################################################################################################
+# A state is recorded for each change to the flow graph, the size dictates how
many states we can record
+######################################################################################################
+
+##The size of the state saving cache in the flow graph (for undo/redo
functionality)
+STATE_CACHE_SIZE = 42
+
+######################################################################################################
+## Constansts dealing with File Paths
+######################################################################################################
+
+##Location of external data files.
+DATA_DIR = @grc_data_dir@
+
+##DTD validator for saved flow graphs.
+FLOW_GRAPH_DTD = os.path.join(DATA_DIR, 'flow_graph.dtd')
+
+##The default file extension for flow graphs.
+FLOW_GRAPH_FILE_EXTENSION = '.grc'
+
+##The default file extension for saving flow graph snap shots.
+IMAGE_FILE_EXTENSION = '.png'
+
+##The default path for the open/save dialogs.
+DEFAULT_FILE_PATH = os.getcwd()
+
+##The default icon for the gtk windows.
+PY_GTK_ICON = os.path.join(DATA_DIR, 'grc-icon-256.png')
+
+##The users home directory.
+HOME_DIR = os.path.expanduser('~')
+
Added: gnuradio/branches/developers/jblum/grc/grc/src/grc/Makefile.am
===================================================================
--- gnuradio/branches/developers/jblum/grc/grc/src/grc/Makefile.am
(rev 0)
+++ gnuradio/branches/developers/jblum/grc/grc/src/grc/Makefile.am
2008-08-14 17:06:02 UTC (rev 9288)
@@ -0,0 +1,38 @@
+#
+# 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
+
+SUBDIRS = elements gui
+
+grpython_PYTHON = \
+ __init__.py \
+ Constants.py \
+ converter.py \
+ ActionHandler.py \
+ Actions.py \
+ Messages.py \
+ ParseXML.py \
+ Preferences.py \
+ StateCache.py \
+ Utils.py
+
+CLEANFILES = *.pyc
Added: gnuradio/branches/developers/jblum/grc/grc/src/grc/elements/Makefile.am
===================================================================
--- gnuradio/branches/developers/jblum/grc/grc/src/grc/elements/Makefile.am
(rev 0)
+++ gnuradio/branches/developers/jblum/grc/grc/src/grc/elements/Makefile.am
2008-08-14 17:06:02 UTC (rev 9288)
@@ -0,0 +1,36 @@
+#
+# 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
+
+SUBDIRS =
+
+grpython_PYTHON = \
+ __init__.py \
+ Block.py \
+ Connection.py \
+ Element.py \
+ FlowGraph.py \
+ Param.py \
+ Platform.py \
+ Port.py
+
+CLEANFILES = *.pyc
Added: gnuradio/branches/developers/jblum/grc/grc/src/grc/gui/Makefile.am
===================================================================
--- gnuradio/branches/developers/jblum/grc/grc/src/grc/gui/Makefile.am
(rev 0)
+++ gnuradio/branches/developers/jblum/grc/grc/src/grc/gui/Makefile.am
2008-08-14 17:06:02 UTC (rev 9288)
@@ -0,0 +1,37 @@
+#
+# 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
+
+SUBDIRS = elements
+
+grpython_PYTHON = \
+ __init__.py \
+ Bars.py \
+ BlockTreeWindow.py \
+ Dialogs.py \
+ DrawingArea.py \
+ FileDialogs.py \
+ MainWindow.py \
+ NotebookPage.py \
+ ParamsDialog.py
+
+CLEANFILES = *.pyc
Added:
gnuradio/branches/developers/jblum/grc/grc/src/grc/gui/elements/Makefile.am
===================================================================
--- gnuradio/branches/developers/jblum/grc/grc/src/grc/gui/elements/Makefile.am
(rev 0)
+++ gnuradio/branches/developers/jblum/grc/grc/src/grc/gui/elements/Makefile.am
2008-08-14 17:06:02 UTC (rev 9288)
@@ -0,0 +1,38 @@
+#
+# 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
+
+SUBDIRS =
+
+grpython_PYTHON = \
+ __init__.py \
+ Block.py \
+ Colors.py \
+ Connection.py \
+ Element.py \
+ FlowGraph.py \
+ Param.py \
+ Platform.py \
+ Port.py \
+ Utils.py
+
+CLEANFILES = *.pyc
Deleted:
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/Constants.py
Copied:
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/Constants.py.in
(from rev 9286,
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/Constants.py)
===================================================================
--- gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/Constants.py.in
(rev 0)
+++ gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/Constants.py.in
2008-08-14 17:06:02 UTC (rev 9288)
@@ -0,0 +1,43 @@
+"""
+Copyright 2008 Free Software Foundation, Inc.
+This file is part of GNU Radio
+
+GNU Radio Companion 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
+of the License, or (at your option) any later version.
+
+GNU Radio Companion 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
+"""
address@hidden grc_gnuradio.Constants
+#Global constants for grc gnuradio package
address@hidden Josh Blum
+
+import os
+import sys
+import stat
+
+PYEXEC = @grc_gnuradio_pyexec@
+
+#setup paths
+DATA_PATH = @grc_gnuradio_data_dir@
+BLOCK_PATH = os.path.join(DATA_PATH, 'blocks')
+HIER_BLOCKS_LIB_PATH = os.path.join(os.path.expanduser('~'), '.grc_gnuradio')
+
+#file creation modes
+TOP_BLOCK_FILE_MODE = stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR |
stat.S_IRGRP | stat.S_IWGRP | stat.S_IXGRP | stat.S_IROTH
+HIER_BLOCK_FILE_MODE = stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP |
stat.S_IWGRP | stat.S_IROTH
+
+#data files
+FLOW_GRAPH_TEMPLATE = os.path.join(DATA_PATH, 'flow_graph.tmpl')
+BLOCK_DTD = os.path.join(DATA_PATH, 'block.dtd')
+BLOCK_TREE = os.path.join(DATA_PATH, 'block_tree.xml')
+DEFAULT_FLOW_GRAPH = os.path.join(DATA_PATH, 'default_flow_graph.grc.xml')
+
Added: gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/Makefile.am
===================================================================
--- gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/Makefile.am
(rev 0)
+++ gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/Makefile.am
2008-08-14 17:06:02 UTC (rev 9288)
@@ -0,0 +1,37 @@
+#
+# 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
+
+SUBDIRS = blks2 usrp utils wxgui
+
+grpython_PYTHON = \
+ __init__.py \
+ Constants.py \
+ Block.py \
+ Connection.py \
+ FlowGraph.py \
+ Generator.py \
+ Platform.py \
+ Param.py \
+ Port.py
+
+CLEANFILES = *.pyc
Added:
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/blks2/Makefile.am
===================================================================
---
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/blks2/Makefile.am
(rev 0)
+++
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/blks2/Makefile.am
2008-08-14 17:06:02 UTC (rev 9288)
@@ -0,0 +1,33 @@
+#
+# 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
+
+SUBDIRS =
+
+grpython_PYTHON = \
+ __init__.py \
+ error_rate.py \
+ packet.py \
+ queue.py \
+ selector.py
+
+CLEANFILES = *.pyc
Added:
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/usrp/Makefile.am
===================================================================
---
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/usrp/Makefile.am
(rev 0)
+++
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/usrp/Makefile.am
2008-08-14 17:06:02 UTC (rev 9288)
@@ -0,0 +1,30 @@
+#
+# 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
+
+SUBDIRS =
+
+grpython_PYTHON = \
+ __init__.py \
+ simple_usrp.py
+
+CLEANFILES = *.pyc
Added:
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/utils/Makefile.am
===================================================================
---
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/utils/Makefile.am
(rev 0)
+++
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/utils/Makefile.am
2008-08-14 17:06:02 UTC (rev 9288)
@@ -0,0 +1,32 @@
+#
+# 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
+
+SUBDIRS =
+
+grpython_PYTHON = \
+ __init__.py \
+ convert_hier.py \
+ expr_utils.py \
+ extract_docs.py
+
+CLEANFILES = *.pyc
Added:
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/wxgui/Makefile.am
===================================================================
---
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/wxgui/Makefile.am
(rev 0)
+++
gnuradio/branches/developers/jblum/grc/grc/src/grc_gnuradio/wxgui/Makefile.am
2008-08-14 17:06:02 UTC (rev 9288)
@@ -0,0 +1,31 @@
+#
+# 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
+
+SUBDIRS =
+
+grpython_PYTHON = \
+ __init__.py \
+ callback_controls.py \
+ top_block_gui.py
+
+CLEANFILES = *.pyc
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] r9288 - in gnuradio/branches/developers/jblum/grc/grc: . data data/grc_gnuradio src/grc src/grc/elements src/grc/gui src/grc/gui/elements src/grc_gnuradio src/grc_gnuradio/blks2 src/grc_gnuradio/usrp src/grc_gnuradio/utils src/grc_gnuradio/wxgui,
jblum <=