diff options
-rw-r--r-- | config/grc_gr_pager.m4 | 1 | ||||
-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 |
8 files changed, 38 insertions, 5 deletions
diff --git a/config/grc_gr_pager.m4 b/config/grc_gr_pager.m4 index 23af7a9c4..8b4932194 100644 --- a/config/grc_gr_pager.m4 +++ b/config/grc_gr_pager.m4 @@ -26,6 +26,7 @@ AC_DEFUN([GRC_GR_PAGER],[ AC_CONFIG_FILES([\ gr-pager/Makefile \ gr-pager/gnuradio-pager.pc \ + gr-pager/apps/Makefile \ gr-pager/src/Makefile \ gr-pager/src/run_tests ]) diff --git a/gr-pager/Makefile.am b/gr-pager/Makefile.am index d73e4050f..984e64798 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 000000000..282522db0 --- /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 000000000..64a79f594 --- /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 f8d9d25b1..f8d9d25b1 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 14f9151de..14f9151de 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 06c2488c0..06c2488c0 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 d084d05f8..8a9f90d59 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 |