File: Makefile.local

package info (click to toggle)
notmuch 0.40-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,120 kB
  • sloc: sh: 22,063; ansic: 14,938; lisp: 9,090; cpp: 8,030; python: 6,342; perl: 391; makefile: 231; javascript: 34; ruby: 9
file content (40 lines) | stat: -rw-r--r-- 1,256 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# -*- makefile-gmake -*-

dir := bindings

# force the shared library to be built
ruby-bindings: $(dir)/ruby.stamp

$(dir)/ruby.stamp: lib/$(LINKER_NAME)
ifeq ($(HAVE_RUBY_DEV),1)
	cd $(dir)/ruby && \
		EXTRA_LDFLAGS="$(NO_UNDEFINED_LDFLAGS) $(TALLOC_LDFLAGS)" \
		EXTRA_INCFLAGS="-I$(NOTMUCH_SRCDIR)/lib $(TALLOC_CFLAGS)" \
		LIBNOTMUCH="../../lib/$(LINKER_NAME)" \
		$(RUBY) extconf.rb --vendor
	$(MAKE) -C $(dir)/ruby CFLAGS="$(CFLAGS) -pipe -fno-plt -fPIC" && touch $@
endif

python-cffi-bindings: $(dir)/python-cffi.stamp

$(dir)/python-cffi.stamp: 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 ../python-cffi.stamp
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 $(dir)/ruby.stamp

CLEAN += bindings/python-cffi/build $(dir)/python-cffi.stamp
CLEAN += bindings/python-cffi/__pycache__

DISTCLEAN += bindings/python-cffi/_notmuch_config.py \
	bindings/python-cffi/notmuch2.egg-info