aboutsummaryrefslogtreecommitdiff
path: root/bindings/Makefile.local
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2019-10-19 22:52:56 -0300
committerDavid Bremner <david@tethera.net>2019-12-03 08:12:30 -0400
commit46e96156218e456df3fdd239e8c055220fba667a (patch)
tree35c6053860a6a6e419c5fe707f58fdbf1b784e65 /bindings/Makefile.local
parent3aaa8cfe941bd59730ae04df46da6aa3181f85e5 (diff)
build: optionally build python-cffi bindings
Put the build product (and tests) in a well known location so that we can find them e.g. from the tests.
Diffstat (limited to 'bindings/Makefile.local')
-rw-r--r--bindings/Makefile.local9
1 files changed, 9 insertions, 0 deletions
diff --git a/bindings/Makefile.local b/bindings/Makefile.local
index 18f95835..19ddd6ea 100644
--- a/bindings/Makefile.local
+++ b/bindings/Makefile.local
@@ -13,6 +13,13 @@ ifeq ($(HAVE_RUBY_DEV),1)
$(MAKE) -C $(dir)/ruby
endif
+python-cffi-bindings: lib/$(LINKER_NAME)
+ifeq ($(HAVE_PYTHON3_CFFI),1)
+ cd $(dir)/python-cffi && \
+ ${PYTHON} setup.py build --build-lib build/stage && \
+ mkdir -p build/stage/tests && cp tests/*.py build/stage/tests
+endif
+
CLEAN += $(patsubst %,$(dir)/ruby/%, \
.RUBYARCHDIR.time \
Makefile database.o directory.o filenames.o\
@@ -20,3 +27,5 @@ CLEAN += $(patsubst %,$(dir)/ruby/%, \
status.o tags.o thread.o threads.o)
CLEAN += bindings/ruby/.vendorarchdir.time
+
+CLEAN += bindings/python-cffi/build