X-Git-Url: https://git.cworth.org/git?p=notmuch;a=blobdiff_plain;f=bindings%2FMakefile.local;h=bc960bbceabe592bb75522c25c20bbc2c9c70e10;hp=17b561caac52dfc17a1f4fc9e56758b32dbb25fd;hb=ff5311b09808619dcb593d4505e2311024a21deb;hpb=523d2b50fcaae90cbe09975c1f1bc652ff521ec6 diff --git a/bindings/Makefile.local b/bindings/Makefile.local index 17b561ca..bc960bbc 100644 --- a/bindings/Makefile.local +++ b/bindings/Makefile.local @@ -1,4 +1,4 @@ -# -*- makefile -*- +# -*- makefile-gmake -*- dir := bindings @@ -9,12 +9,23 @@ ifeq ($(HAVE_RUBY_DEV),1) EXTRA_LDFLAGS="$(NO_UNDEFINED_LDFLAGS)" \ LIBNOTMUCH="../../lib/$(LINKER_NAME)" \ NOTMUCH_SRCDIR='$(NOTMUCH_SRCDIR)' \ - ruby extconf.rb --vendor + $(RUBY) extconf.rb --vendor $(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\ init.o message.o messages.o mkmf.log notmuch.so query.o \ status.o tags.o thread.o threads.o) + +CLEAN += bindings/ruby/.vendorarchdir.time + +CLEAN += bindings/python-cffi/build