X-Git-Url: https://git.cworth.org/git?p=notmuch;a=blobdiff_plain;f=bindings%2FMakefile.local;h=3672e69ff76af07da05afc0a527355d2c0271941;hp=4ecf839d7c18138281c7894ce7274b2f52700139;hb=3e2e724d53a1dce3ba00a20c71b2e6f735678136;hpb=33c8777a967ece2dd4bbda7e83a4e07c195abf51 diff --git a/bindings/Makefile.local b/bindings/Makefile.local index 4ecf839d..3672e69f 100644 --- a/bindings/Makefile.local +++ b/bindings/Makefile.local @@ -1,4 +1,4 @@ -# -*- makefile -*- +# -*- makefile-gmake -*- dir := bindings @@ -8,10 +8,16 @@ ifeq ($(HAVE_RUBY_DEV),1) cd $(dir)/ruby && \ EXTRA_LDFLAGS="$(NO_UNDEFINED_LDFLAGS)" \ LIBNOTMUCH="../../lib/$(LINKER_NAME)" \ - ruby extconf.rb --vendor - $(MAKE) -C $(dir)/ruby -else - @echo Missing dependency, skipping ruby bindings + NOTMUCH_SRCDIR='$(NOTMUCH_SRCDIR)' \ + $(RUBY) extconf.rb --vendor + $(MAKE) -C $(dir)/ruby CFLAGS="$(CFLAGS) -pipe -fno-plt -fPIC" +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/%, \ @@ -19,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