X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gnuradio-examples%2Fpython%2FMakefile.am;h=c9db48d6ab0453e3a4bc2ced0ec6f69a6e6d37b9;hb=54d6b9281dc233e0b2acf26884073d973b7663de;hp=de576770f98c461d7c7aadb441b88f2e71358c5a;hpb=2c37e57fe4626ac30eb8c042e4d7daf64a0d45f5;p=debian%2Fgnuradio diff --git a/gnuradio-examples/python/Makefile.am b/gnuradio-examples/python/Makefile.am index de576770..c9db48d6 100644 --- a/gnuradio-examples/python/Makefile.am +++ b/gnuradio-examples/python/Makefile.am @@ -19,5 +19,25 @@ # Boston, MA 02110-1301, USA. # -SUBDIRS = apps audio channel-coding digital_voice digital multi-antenna \ - multi_usrp networking usrp hier ofdm +include $(top_srcdir)/Makefile.common + +SUBDIRS = \ + apps \ + audio \ + digital_voice \ + digital \ + multi-antenna \ + multi_usrp \ + networking \ + usrp \ + hier \ + ofdm + +# Make example scripts with #! executable +install-data-local: + for i in `find $(exampledir) -type f ! -perm 755`; do \ + if head -1 $$i | grep -q '^#!'; then \ + chmod 755 $$i; \ + echo "made executable: $$i"; \ + fi; \ + done