summaryrefslogtreecommitdiff
path: root/gnuradio-core/src
diff options
context:
space:
mode:
Diffstat (limited to 'gnuradio-core/src')
-rw-r--r--gnuradio-core/src/guile/Makefile.am6
-rw-r--r--gnuradio-core/src/python/Makefile.am3
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