]> git.notmuchmail.org Git - notmuch/commitdiff
build: optionally build python-cffi bindings
authorDavid Bremner <david@tethera.net>
Sun, 20 Oct 2019 01:52:56 +0000 (22:52 -0300)
committerDavid Bremner <david@tethera.net>
Tue, 3 Dec 2019 12:12:30 +0000 (08:12 -0400)
Put the build product (and tests) in a well known location so that we
can find them e.g. from the tests.

Makefile.local
bindings/Makefile.local

index 3c6dacbccc4b3af1e43d89fcf8e69dd23997aed0..7c12612dee8e806535be42f1381e3f24448f093b 100644 (file)
@@ -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
index 18f958359bf0c58e23b7dee7b3c9586dcc9c29ec..19ddd6ea13d5641b215a693ccc4b885da1357d15 100644 (file)
@@ -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