diff options
author | Tom Rondeau | 2011-09-09 17:08:23 -0400 |
---|---|---|
committer | Tom Rondeau | 2011-09-09 17:18:53 -0400 |
commit | 0c9ec724a6f5e1dc234bb8b3158726310a3bb0cb (patch) | |
tree | 60e93c72117e88f4a934691f56dd16373a9bd352 /gnuradio-examples | |
parent | 7fa533e2b04423e31159b10fb4c54554fe93ea0e (diff) | |
download | gnuradio-0c9ec724a6f5e1dc234bb8b3158726310a3bb0cb.tar.gz gnuradio-0c9ec724a6f5e1dc234bb8b3158726310a3bb0cb.tar.bz2 gnuradio-0c9ec724a6f5e1dc234bb8b3158726310a3bb0cb.zip |
tags: adding tags examples to build distribution.
Diffstat (limited to 'gnuradio-examples')
-rw-r--r-- | gnuradio-examples/python/Makefile.am | 1 | ||||
-rw-r--r-- | gnuradio-examples/python/tags/.gitignore | 2 | ||||
-rw-r--r-- | gnuradio-examples/python/tags/Makefile.am | 29 |
3 files changed, 32 insertions, 0 deletions
diff --git a/gnuradio-examples/python/Makefile.am b/gnuradio-examples/python/Makefile.am index 30effdf9a..65021729a 100644 --- a/gnuradio-examples/python/Makefile.am +++ b/gnuradio-examples/python/Makefile.am @@ -32,5 +32,6 @@ SUBDIRS = \ network \ ofdm \ pfb \ + tags \ usrp \ usrp2 diff --git a/gnuradio-examples/python/tags/.gitignore b/gnuradio-examples/python/tags/.gitignore new file mode 100644 index 000000000..b336cc7ce --- /dev/null +++ b/gnuradio-examples/python/tags/.gitignore @@ -0,0 +1,2 @@ +/Makefile +/Makefile.in diff --git a/gnuradio-examples/python/tags/Makefile.am b/gnuradio-examples/python/tags/Makefile.am new file mode 100644 index 000000000..5d71bf9b0 --- /dev/null +++ b/gnuradio-examples/python/tags/Makefile.am @@ -0,0 +1,29 @@ +# +# Copyright 2011 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 + +ourdatadir = $(exampledir)/tags + +dist_ourdata_SCRIPTS = \ + test_file_tags.py \ + uhd_burst_detector.py + |