diff options
author | Eric Blossom | 2010-11-24 19:18:11 -0800 |
---|---|---|
committer | Eric Blossom | 2010-11-24 19:18:11 -0800 |
commit | 4dce044bcba406c69704baad7ff1a30a35a6d0e2 (patch) | |
tree | 747550315423158a495e1232218cbab444f6f9a6 | |
parent | b005e7d9f481ed39591d97ef697621368e6505c0 (diff) | |
download | gnuradio-4dce044bcba406c69704baad7ff1a30a35a6d0e2.tar.gz gnuradio-4dce044bcba406c69704baad7ff1a30a35a6d0e2.tar.bz2 gnuradio-4dce044bcba406c69704baad7ff1a30a35a6d0e2.zip |
Add conditionals around gnuradio-core/src/{guile,python}
-rw-r--r-- | gnuradio-core/src/guile/Makefile.am | 6 | ||||
-rw-r--r-- | gnuradio-core/src/python/Makefile.am | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gnuradio-core/src/guile/Makefile.am b/gnuradio-core/src/guile/Makefile.am index 209e664a0..4e12b646d 100644 --- a/gnuradio-core/src/guile/Makefile.am +++ b/gnuradio-core/src/guile/Makefile.am @@ -19,6 +19,8 @@ include $(top_srcdir)/Makefile.common +if GUILE + TESTS = run_guile_tests EXTRA_DIST += \ @@ -26,7 +28,7 @@ EXTRA_DIST += \ $(nobase_guile_DATA) \ $(GUILE_TESTS) -# These are the hand-code guile files for gnuradio-core. +# These are the hand-coded guile files for gnuradio-core. # # Swig/common.scm is glue that's required for the goops wrappers. # gnuradio/export-safely.scm works around some problems in the goops generated wrappers. @@ -52,3 +54,5 @@ GUILE_TESTS = \ tests/io_ctors.test CLEANFILES = guile.log + +endif diff --git a/gnuradio-core/src/python/Makefile.am b/gnuradio-core/src/python/Makefile.am index e50af8944..a90aaba5c 100644 --- a/gnuradio-core/src/python/Makefile.am +++ b/gnuradio-core/src/python/Makefile.am @@ -21,9 +21,10 @@ include $(top_srcdir)/Makefile.common +if PYTHON SUBDIRS = gnuradio bin noinst_PYTHON = \ build_utils.py \ build_utils_codes.py - +endif |