X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=bindings%2FMakefile.local;h=bc960bbceabe592bb75522c25c20bbc2c9c70e10;hb=d127b16afe2e5c0f245400bc74d96208372075a2;hp=d236f014c1b048e6fdb5401c0730c7e980b366ca;hpb=53035dafe060f6832909ad54e48277c8d3bd2d1b;p=notmuch diff --git a/bindings/Makefile.local b/bindings/Makefile.local index d236f014..bc960bbc 100644 --- a/bindings/Makefile.local +++ b/bindings/Makefile.local @@ -1,16 +1,23 @@ -# -*- makefile -*- +# -*- makefile-gmake -*- dir := bindings # force the shared library to be built -ruby-bindings: lib/libnotmuch.so +ruby-bindings: lib/$(LINKER_NAME) ifeq ($(HAVE_RUBY_DEV),1) cd $(dir)/ruby && \ EXTRA_LDFLAGS="$(NO_UNDEFINED_LDFLAGS)" \ - ruby extconf.rb --vendor + LIBNOTMUCH="../../lib/$(LINKER_NAME)" \ + NOTMUCH_SRCDIR='$(NOTMUCH_SRCDIR)' \ + $(RUBY) extconf.rb --vendor $(MAKE) -C $(dir)/ruby -else - @echo Missing dependency, skipping ruby bindings +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/%, \ @@ -18,3 +25,7 @@ CLEAN += $(patsubst %,$(dir)/ruby/%, \ 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