diff options
author | Johnathan Corgan <jcorgan@corganenterprises.com> | 2009-10-11 12:47:46 -0700 |
---|---|---|
committer | Johnathan Corgan <jcorgan@corganenterprises.com> | 2009-11-03 07:21:42 -0800 |
commit | 821aa4341a2ad6b69cbb829bcf2d31638f67a878 (patch) | |
tree | 4c4386938df8fc40a3c3bc415cf5a31d2586f7b2 /gr-pager | |
parent | 058edee5b4d1423b7ad88a9748bec073ff4963ff (diff) |
Moved command-line apps into apps subdirectory
Diffstat (limited to 'gr-pager')
-rw-r--r-- | gr-pager/Makefile.am | 4 | ||||
-rw-r--r-- | gr-pager/apps/.gitignore | 2 | ||||
-rw-r--r-- | gr-pager/apps/Makefile.am | 31 | ||||
-rwxr-xr-x | gr-pager/apps/usrp_flex.py (renamed from gr-pager/src/usrp_flex.py) | 0 | ||||
-rwxr-xr-x | gr-pager/apps/usrp_flex_all.py (renamed from gr-pager/src/usrp_flex_all.py) | 0 | ||||
-rwxr-xr-x | gr-pager/apps/usrp_flex_band.py (renamed from gr-pager/src/usrp_flex_band.py) | 0 | ||||
-rw-r--r-- | gr-pager/src/Makefile.am | 5 |
7 files changed, 37 insertions, 5 deletions
diff --git a/gr-pager/Makefile.am b/gr-pager/Makefile.am index d73e4050fe..984e647986 100644 --- a/gr-pager/Makefile.am +++ b/gr-pager/Makefile.am @@ -23,5 +23,9 @@ include $(top_srcdir)/Makefile.common SUBDIRS = src +if PYTHON +SUBDIRS += apps +endif + pkgconfigdir = $(libdir)/pkgconfig dist_pkgconfig_DATA = gnuradio-pager.pc diff --git a/gr-pager/apps/.gitignore b/gr-pager/apps/.gitignore new file mode 100644 index 0000000000..282522db03 --- /dev/null +++ b/gr-pager/apps/.gitignore @@ -0,0 +1,2 @@ +Makefile +Makefile.in diff --git a/gr-pager/apps/Makefile.am b/gr-pager/apps/Makefile.am new file mode 100644 index 0000000000..64a79f5946 --- /dev/null +++ b/gr-pager/apps/Makefile.am @@ -0,0 +1,31 @@ +# +# Copyright 2009 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 + +if PYTHON + +dist_bin_SCRIPTS = \ + usrp_flex.py \ + usrp_flex_all.py \ + usrp_flex_band.py + +endif diff --git a/gr-pager/src/usrp_flex.py b/gr-pager/apps/usrp_flex.py index f8d9d25b19..f8d9d25b19 100755 --- a/gr-pager/src/usrp_flex.py +++ b/gr-pager/apps/usrp_flex.py diff --git a/gr-pager/src/usrp_flex_all.py b/gr-pager/apps/usrp_flex_all.py index 14f9151de1..14f9151de1 100755 --- a/gr-pager/src/usrp_flex_all.py +++ b/gr-pager/apps/usrp_flex_all.py diff --git a/gr-pager/src/usrp_flex_band.py b/gr-pager/apps/usrp_flex_band.py index 06c2488c05..06c2488c05 100755 --- a/gr-pager/src/usrp_flex_band.py +++ b/gr-pager/apps/usrp_flex_band.py diff --git a/gr-pager/src/Makefile.am b/gr-pager/src/Makefile.am index d084d05f8b..8a9f90d59a 100644 --- a/gr-pager/src/Makefile.am +++ b/gr-pager/src/Makefile.am @@ -59,11 +59,6 @@ libgnuradio_pager_la_LDFLAGS = \ if PYTHON -dist_bin_SCRIPTS = \ - usrp_flex.py \ - usrp_flex_all.py \ - usrp_flex_band.py - ############################## # SWIG interface and library TESTS = run_tests |