mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
46e9615621
Put the build product (and tests) in a well known location so that we can find them e.g. from the tests.
31 lines
852 B
Makefile
31 lines
852 B
Makefile
# -*- makefile -*-
|
|
|
|
dir := bindings
|
|
|
|
# force the shared library to be built
|
|
ruby-bindings: 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
|
|
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
|