From: David Bremner Date: Sun, 20 Oct 2019 01:52:56 +0000 (-0300) Subject: build: optionally build python-cffi bindings X-Git-Tag: archive/debian/0.30_rc0-1~126 X-Git-Url: https://git.cworth.org/git?p=notmuch;a=commitdiff_plain;h=46e96156218e456df3fdd239e8c055220fba667a 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. --- diff --git a/Makefile.local b/Makefile.local index 3c6dacbc..7c12612d 100644 --- a/Makefile.local +++ b/Makefile.local @@ -1,7 +1,7 @@ # -*- makefile -*- .PHONY: all -all: notmuch notmuch-shared build-man build-info ruby-bindings +all: notmuch notmuch-shared build-man build-info ruby-bindings python-cffi-bindings ifeq ($(MAKECMDGOALS),) ifeq ($(shell cat .first-build-message 2>/dev/null),) @NOTMUCH_FIRST_BUILD=1 $(MAKE) --no-print-directory all 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