]> git.notmuchmail.org Git - notmuch/blob - bindings/Makefile.local
build/ruby: use notmuch configure script values for shared lib
[notmuch] / bindings / Makefile.local
1 # -*- makefile -*-
2
3 dir := bindings
4
5 # force the shared library to be built
6 ruby-bindings: lib/$(LINKER_NAME)
7 ifeq ($(HAVE_RUBY_DEV),1)
8         cd $(dir)/ruby && \
9                 EXTRA_LDFLAGS="$(NO_UNDEFINED_LDFLAGS)" \
10                 LIBNOTMUCH="../../lib/$(LINKER_NAME)" \
11                 ruby extconf.rb --vendor
12         $(MAKE) -C $(dir)/ruby
13 else
14         @echo Missing dependency, skipping ruby bindings
15 endif
16
17 CLEAN += $(patsubst %,$(dir)/ruby/%, \
18         .RUBYARCHDIR.time \
19         Makefile database.o directory.o filenames.o\
20         init.o message.o messages.o mkmf.log notmuch.so query.o \
21         status.o tags.o thread.o threads.o)