X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=bindings%2FMakefile.local;h=1cdd28a0584fe2a4436f9b8f9b0e61272cc766c8;hb=904c067f32ce29f582c711c0ce631df9b8d4edfc;hp=2ba2775c8e59af673837688576520689f5335f60;hpb=b2e4778ea4a704e4a86ae41d680a9ec886e66cfa;p=notmuch diff --git a/bindings/Makefile.local b/bindings/Makefile.local index 2ba2775c..1cdd28a0 100644 --- a/bindings/Makefile.local +++ b/bindings/Makefile.local @@ -1,16 +1,25 @@ -# -*- makefile -*- +# -*- makefile-gmake -*- dir := bindings # force the shared library to be built -ruby-bindings: lib/$(LINKER_NAME) +ruby-bindings: $(dir)/ruby.stamp + +$(dir)/ruby.stamp: lib/$(LINKER_NAME) ifeq ($(HAVE_RUBY_DEV),1) cd $(dir)/ruby && \ EXTRA_LDFLAGS="$(NO_UNDEFINED_LDFLAGS)" \ LIBNOTMUCH="../../lib/$(LINKER_NAME)" \ NOTMUCH_SRCDIR='$(NOTMUCH_SRCDIR)' \ $(RUBY) extconf.rb --vendor - $(MAKE) -C $(dir)/ruby + $(MAKE) -C $(dir)/ruby CFLAGS="$(CFLAGS) -pipe -fno-plt -fPIC" && touch $@ +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 && touch ../../$@ endif CLEAN += $(patsubst %,$(dir)/ruby/%, \ @@ -18,3 +27,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 $(dir)/ruby.stamp + +CLEAN += bindings/python-cffi/build