X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=bindings%2FMakefile.local;h=19ddd6ea13d5641b215a693ccc4b885da1357d15;hb=a00f3a1f7a646d9834a5de57a29cf3e900dbdcdf;hp=16817f5ac4322771a0181d879d8a3a069c72491b;hpb=d038b9320949c79503fe4b76870aaabf279405ab;p=notmuch diff --git a/bindings/Makefile.local b/bindings/Makefile.local index 16817f5a..19ddd6ea 100644 --- a/bindings/Makefile.local +++ b/bindings/Makefile.local @@ -3,12 +3,21 @@ 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 && ruby extconf.rb --vendor + cd $(dir)/ruby && \ + EXTRA_LDFLAGS="$(NO_UNDEFINED_LDFLAGS)" \ + 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/%, \ @@ -16,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