diff options
author | jcorgan | 2009-02-26 23:39:17 +0000 |
---|---|---|
committer | jcorgan | 2009-02-26 23:39:17 +0000 |
commit | 503efe1fbe3822979b8aa3c868d3d13fbeb9af7f (patch) | |
tree | a3312f065b8865c473d2151f70a8d6ee1992563d /gr-trellis/src/examples/Makefile.am | |
parent | f1c079534256ec7e1cd2bbf1360bec15c539d87c (diff) | |
download | gnuradio-503efe1fbe3822979b8aa3c868d3d13fbeb9af7f.tar.gz gnuradio-503efe1fbe3822979b8aa3c868d3d13fbeb9af7f.tar.bz2 gnuradio-503efe1fbe3822979b8aa3c868d3d13fbeb9af7f.zip |
Merged r10504:10528 from michaelld/fix_local_data_install into trunk. Trunk passes distcheck.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10529 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gr-trellis/src/examples/Makefile.am')
-rw-r--r-- | gr-trellis/src/examples/Makefile.am | 43 |
1 files changed, 17 insertions, 26 deletions
diff --git a/gr-trellis/src/examples/Makefile.am b/gr-trellis/src/examples/Makefile.am index d1da52fbb..c8ba44f9c 100644 --- a/gr-trellis/src/examples/Makefile.am +++ b/gr-trellis/src/examples/Makefile.am @@ -1,5 +1,5 @@ # -# Copyright 2004 Free Software Foundation, Inc. +# Copyright 2004,2009 Free Software Foundation, Inc. # # This file is part of GNU Radio # @@ -23,34 +23,25 @@ include $(top_srcdir)/Makefile.common SUBDIRS = fsm_files -EXTRA_DIST = \ - README \ - fsm_utils.py \ - test_tcm.py \ - test_tcm1.py \ - test_tcm2.py \ - test_tcm_parallel.py \ - test_tcm_combined.py \ - test_sccc_hard.py \ - test_sccc_soft.py \ - test_sccc_turbo.py \ +ourdatadir = $(exampledir)/trellis + +dist_ourdata_DATA = \ + README + +dist_ourdata_SCRIPTS = \ + fsm_utils.py \ + test_tcm.py \ + test_tcm1.py \ + test_tcm2.py \ + test_tcm_parallel.py \ + test_tcm_combined.py \ + test_sccc_hard.py \ + test_sccc_soft.py \ + test_sccc_turbo.py \ test_viterbi_equalization1.py \ test_viterbi_equalization.py \ test_turbo_equalization.py \ test_turbo_equalization1.py \ - test_turbo_equalization2.py - - -ourdatadir = $(exampledir)/trellis -ourdata_DATA = $(EXTRA_DIST) - -# Make example scripts with #! executable -install-data-local: install-ourdataDATA - for i in `find $(ourdatadir) -type f ! -perm 755`; do \ - if head -1 $$i | grep -q '^#!'; then \ - chmod 755 $$i; \ - echo "made executable: $$i"; \ - fi; \ - done + test_turbo_equalization2.py MOSTLYCLEANFILES = *.pyc |