diff options
author | eb | 2007-03-07 01:43:43 +0000 |
---|---|---|
committer | eb | 2007-03-07 01:43:43 +0000 |
commit | 224434889bf564a4456011180c62a58e0ca55c8f (patch) | |
tree | fbbbff591fa6a7a9987a6b0b4022ea5f88ab4a3b /Makefile.common | |
parent | 511ddd6cbfd7788f8a2cb3634d898d7c5fdd29fb (diff) | |
download | gnuradio-224434889bf564a4456011180c62a58e0ca55c8f.tar.gz gnuradio-224434889bf564a4456011180c62a58e0ca55c8f.tar.bz2 gnuradio-224434889bf564a4456011180c62a58e0ca55c8f.zip |
Merged eb/usrp-install r4723:4727 into trunk.
This moves usrp related .py files from the top-level of site-packages
into site-packages/usrpm.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@4728 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index fe026b227..35ff20395 100644 --- a/Makefile.common +++ b/Makefile.common @@ -28,13 +28,21 @@ grincludedir = $(includedir)/gnuradio # swig includes swigincludedir = $(grincludedir)/swig -# Install this stuff in the appropriate subdirectory +# Install the gnuradio stuff in the appropriate subdirectory # This usually ends up at: # ${prefix}/lib/python${python_version}/site-packages/gnuradio grpythondir = $(pythondir)/gnuradio grpyexecdir = $(pyexecdir)/gnuradio +# Install the non-gnuradio usrp stuff in the appropriate subdirectory +# This usually ends up at: +# ${prefix}/lib/python${python_version}/site-packages/usrpm + +usrppythondir = $(pythondir)/usrpm +usrppyexecdir = $(pyexecdir)/usrpm + + # swig flags SWIGPYTHONFLAGS = -fvirtual -python -modern |