diff options
Diffstat (limited to 'gr-noaa')
-rw-r--r-- | gr-noaa/Makefile.am | 6 | ||||
-rw-r--r-- | gr-noaa/apps/Makefile.am | 33 | ||||
-rw-r--r-- | gr-noaa/apps/usrp_rx_hrpt.grc (renamed from gr-noaa/grc/usrp_rx_hrpt.grc) | 0 | ||||
-rwxr-xr-x | gr-noaa/apps/usrp_rx_hrpt.py (renamed from gr-noaa/grc/usrp_rx_hrpt.py) | 0 | ||||
-rw-r--r-- | gr-noaa/apps/usrp_rx_lrit.grc (renamed from gr-noaa/grc/usrp_rx_lrit.grc) | 0 | ||||
-rwxr-xr-x | gr-noaa/apps/usrp_rx_lrit.py (renamed from gr-noaa/grc/usrp_rx_lrit.py) | 0 | ||||
-rw-r--r-- | gr-noaa/grc/Makefile.am | 7 | ||||
-rw-r--r-- | gr-noaa/python/Makefile.am | 27 |
8 files changed, 62 insertions, 11 deletions
diff --git a/gr-noaa/Makefile.am b/gr-noaa/Makefile.am index fa03f1088..f3f4f6a38 100644 --- a/gr-noaa/Makefile.am +++ b/gr-noaa/Makefile.am @@ -21,11 +21,9 @@ include $(top_srcdir)/Makefile.common -SUBDIRS = lib +SUBDIRS = lib grc if PYTHON -SUBDIRS += swig +SUBDIRS += swig python apps endif -SUBDIRS += grc - diff --git a/gr-noaa/apps/Makefile.am b/gr-noaa/apps/Makefile.am new file mode 100644 index 000000000..23b8240c1 --- /dev/null +++ b/gr-noaa/apps/Makefile.am @@ -0,0 +1,33 @@ +# +# 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_rx_hrpt.py \ + usrp_rx_lrit.py + +EXTRA_DIST = \ + usrp_rx_hrpt.grc \ + usrp_rx_lrit.grc +endif diff --git a/gr-noaa/grc/usrp_rx_hrpt.grc b/gr-noaa/apps/usrp_rx_hrpt.grc index 715846743..715846743 100644 --- a/gr-noaa/grc/usrp_rx_hrpt.grc +++ b/gr-noaa/apps/usrp_rx_hrpt.grc diff --git a/gr-noaa/grc/usrp_rx_hrpt.py b/gr-noaa/apps/usrp_rx_hrpt.py index 40cc517fc..40cc517fc 100755 --- a/gr-noaa/grc/usrp_rx_hrpt.py +++ b/gr-noaa/apps/usrp_rx_hrpt.py diff --git a/gr-noaa/grc/usrp_rx_lrit.grc b/gr-noaa/apps/usrp_rx_lrit.grc index 55fe39787..55fe39787 100644 --- a/gr-noaa/grc/usrp_rx_lrit.grc +++ b/gr-noaa/apps/usrp_rx_lrit.grc diff --git a/gr-noaa/grc/usrp_rx_lrit.py b/gr-noaa/apps/usrp_rx_lrit.py index bc313e3af..bc313e3af 100755 --- a/gr-noaa/grc/usrp_rx_lrit.py +++ b/gr-noaa/apps/usrp_rx_lrit.py diff --git a/gr-noaa/grc/Makefile.am b/gr-noaa/grc/Makefile.am index 4e4c0bae0..9f1f88195 100644 --- a/gr-noaa/grc/Makefile.am +++ b/gr-noaa/grc/Makefile.am @@ -23,15 +23,8 @@ include $(top_srcdir)/Makefile.common grcblocksdir = $(prefix)/share/gnuradio/grc/blocks -dist_bin_SCRIPTS = \ - usrp_rx_hrpt.py \ - usrp_rx_lrit.py - dist_grcblocks_DATA = \ noaa_hrpt_deframer.xml \ noaa_hrpt_pll_cf.xml \ noaa_hrpt_sync_fb.xml -EXTRA_DIST = \ - usrp_rx_hrpt.grc \ - usrp_rx_lrit.grc diff --git a/gr-noaa/python/Makefile.am b/gr-noaa/python/Makefile.am new file mode 100644 index 000000000..869c5f353 --- /dev/null +++ b/gr-noaa/python/Makefile.am @@ -0,0 +1,27 @@ +# +# 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 + +endif + |