Changeset 7657
- Timestamp:
- 02/13/08 11:48:10
- Files:
-
- gnuradio/branches/releases/3.1/gnuradio-core/src/utils/README (deleted)
- gnuradio/branches/releases/3.1/gnuradio-core/src/utils/gr_plot_char.py (deleted)
- gnuradio/branches/releases/3.1/gnuradio-core/src/utils/gr_plot_const.py (deleted)
- gnuradio/branches/releases/3.1/gnuradio-core/src/utils/gr_plot_data.py (deleted)
- gnuradio/branches/releases/3.1/gnuradio-core/src/utils/gr_plot_fft_c.py (deleted)
- gnuradio/branches/releases/3.1/gnuradio-core/src/utils/gr_plot_fft_f.py (deleted)
- gnuradio/branches/releases/3.1/gnuradio-core/src/utils/gr_plot_float.py (deleted)
- gnuradio/branches/releases/3.1/gnuradio-core/src/utils/gr_plot_int.py (deleted)
- gnuradio/branches/releases/3.1/gnuradio-core/src/utils/gr_plot_iq.py (deleted)
- gnuradio/branches/releases/3.1/gnuradio-core/src/utils/gr_plot_short.py (deleted)
- gnuradio/branches/releases/3.1/gr-utils/src/python (modified) (1 prop)
- gnuradio/branches/releases/3.1/gr-utils/src/python/Makefile.am (modified) (2 diffs)
- gnuradio/branches/releases/3.1/gr-utils/src/python/README.plot (copied) (copied from gnuradio/trunk/gr-utils/src/python/README.plot)
- gnuradio/branches/releases/3.1/gr-utils/src/python/gr_plot_char.py (copied) (copied from gnuradio/trunk/gr-utils/src/python/gr_plot_char.py)
- gnuradio/branches/releases/3.1/gr-utils/src/python/gr_plot_const.py (copied) (copied from gnuradio/trunk/gr-utils/src/python/gr_plot_const.py)
- gnuradio/branches/releases/3.1/gr-utils/src/python/gr_plot_fft_c.py (copied) (copied from gnuradio/trunk/gr-utils/src/python/gr_plot_fft_c.py)
- gnuradio/branches/releases/3.1/gr-utils/src/python/gr_plot_fft_f.py (copied) (copied from gnuradio/trunk/gr-utils/src/python/gr_plot_fft_f.py)
- gnuradio/branches/releases/3.1/gr-utils/src/python/gr_plot_float.py (copied) (copied from gnuradio/trunk/gr-utils/src/python/gr_plot_float.py)
- gnuradio/branches/releases/3.1/gr-utils/src/python/gr_plot_int.py (copied) (copied from gnuradio/trunk/gr-utils/src/python/gr_plot_int.py)
- gnuradio/branches/releases/3.1/gr-utils/src/python/gr_plot_iq.py (copied) (copied from gnuradio/trunk/gr-utils/src/python/gr_plot_iq.py)
- gnuradio/branches/releases/3.1/gr-utils/src/python/gr_plot_short.py (copied) (copied from gnuradio/trunk/gr-utils/src/python/gr_plot_short.py)
- gnuradio/branches/releases/3.1/gr-utils/src/python/plot_data.py (copied) (copied from gnuradio/trunk/gr-utils/src/python/plot_data.py)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gnuradio/branches/releases/3.1/gr-utils/src/python
- Property svn:ignore changed from Makefile Makefile.in to Makefile Makefile.in *.pyc
gnuradio/branches/releases/3.1/gr-utils/src/python/Makefile.am
r6287 r7657 20 20 # 21 21 22 include $(top_srcdir)/Makefile.common 23 22 24 EXTRA_DIST = \ 23 $(bin_SCRIPTS) 25 $(bin_SCRIPTS) \ 26 README.plot 27 28 ourpythondir = $(grpythondir) 29 30 ourpython_PYTHON = \ 31 plot_data.py 24 32 25 33 bin_SCRIPTS = \ 34 gr_plot_char.py \ 35 gr_plot_const.py \ 36 gr_plot_fft_c.py \ 37 gr_plot_fft_f.py \ 38 gr_plot_float.py \ 39 gr_plot_int.py \ 40 gr_plot_iq.py \ 41 gr_plot_short.py \ 26 42 usrp_fft.py \ 27 43 usrp_oscope.py \ … … 32 48 usrp_test_counting.py \ 33 49 usrp_test_loopback.py 50 51 MOSTLYCLEANFILES = *~ *.pyc
