]> git.notmuchmail.org Git - notmuch/blob - Makefile
7a9e44c629b833b27e3fbfe54fcd8657e49d78b2
[notmuch] / Makefile
1 # Default FLAGS, (can be overridden by user such as "make CFLAGS=-O2")
2 WARN_FLAGS=-Wall -Wextra -Wmissing-declarations -Wwrite-strings -Wswitch-enum
3 CFLAGS=-O2
4
5 # Additional programs that are used during the compilation process.
6 EMACS ?= emacs
7 # Lowercase to avoid clash with GZIP environment variable for passing
8 # arguments to gzip.
9 gzip = gzip
10
11 # Additional flags that we will append to whatever the user set.
12 # These aren't intended for the user to manipulate.
13 extra_cflags := $(shell pkg-config --cflags glib-2.0 gmime-2.4 talloc)
14 extra_cxxflags := $(shell xapian-config --cxxflags)
15
16 emacs_lispdir := $(shell pkg-config emacs --variable sitepkglispdir)
17 # Hard-code if this system doesn't have an emacs.pc file
18 ifeq ($(emacs_lispdir),)
19         emacs_lispdir = $(prefix)/share/emacs/site-lisp
20 endif
21
22 bash_completion_dir = /etc/bash_completion.d
23
24 all_deps = Makefile Makefile.local Makefile.config \
25                    lib/Makefile lib/Makefile.local
26
27 # Now smash together user's values with our extra values
28 override CFLAGS += $(WARN_FLAGS) $(extra_cflags)
29 override CXXFLAGS += $(WARN_FLAGS) $(extra_cflags) $(extra_cxxflags)
30
31 override LDFLAGS += \
32         $(shell pkg-config --libs glib-2.0 gmime-2.4 talloc) \
33         $(shell xapian-config --libs)
34
35 all: notmuch notmuch.1.gz
36
37 # Before including any other Makefile fragments, get settings from the
38 # output of configure
39 Makefile.config: configure
40         ./configure
41
42 include Makefile.config
43
44 include lib/Makefile.local
45 include compat/Makefile.local
46 include Makefile.local
47
48 # The user has not set any verbosity, default to quiet mode and inform the
49 # user how to enable verbose compiles.
50 ifeq ($(V),)
51 quiet_DOC := "Use \"$(MAKE) V=1\" to see the verbose compile lines.\n"
52 quiet = @printf $(quiet_DOC)$(eval quiet_DOC:=)"  $1    $@\n"; $($1)
53 endif
54 # The user has explicitly enabled quiet compilation.
55 ifeq ($(V),0)
56 quiet = @printf "  $1   $@\n"; $($1)
57 endif
58 # Otherwise, print the full command line.
59 quiet ?= $($1)
60
61 %.o: %.cc $(all_deps)
62         $(call quiet,CXX) -c $(CXXFLAGS) $< -o $@
63
64 %.o: %.c $(all_deps)
65         $(call quiet,CC) -c $(CFLAGS) $< -o $@
66
67 %.elc: %.el
68         $(call quiet,EMACS) -batch -f batch-byte-compile $<
69
70 .deps/%.d: %.c $(all_deps)
71         @set -e; rm -f $@; mkdir -p $$(dirname $@) ; \
72         $(CC) -M $(CPPFLAGS) $(CFLAGS) $< > $@.$$$$; \
73         sed 's,'$$(basename $*)'\.o[ :]*,$*.o $@ : ,g' < $@.$$$$ > $@; \
74         rm -f $@.$$$$
75
76 .deps/%.d: %.cc $(all_deps)
77         @set -e; rm -f $@; mkdir -p $$(dirname $@) ; \
78         $(CXX) -M $(CPPFLAGS) $(CXXFLAGS) $< > $@.$$$$; \
79         sed 's,'$$(basename $*)'\.o[ :]*,$*.o $@ : ,g' < $@.$$$$ > $@; \
80         rm -f $@.$$$$
81
82 DEPS := $(SRCS:%.c=.deps/%.d)
83 DEPS := $(DEPS:%.cc=.deps/%.d)
84 -include $(DEPS)
85
86 .PHONY : clean
87 clean:
88         rm -f $(CLEAN); rm -rf .deps