]> git.notmuchmail.org Git - notmuch/blob - Makefile
Makefile: Add new "install-bash" target for bash completion support
[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 # Include our local Makefile.local first so that its first target is default
36 include Makefile.local
37 include lib/Makefile.local
38
39 # And get user settings from the output of configure
40 Makefile.config: configure
41         ./configure
42
43 include Makefile.config
44
45 # The user has not set any verbosity, default to quiet mode and inform the
46 # user how to enable verbose compiles.
47 ifeq ($(V),)
48 quiet_DOC := "Use \"$(MAKE) V=1\" to see the verbose compile lines.\n"
49 quiet = @echo $(quiet_DOC)$(eval quiet_DOC:=)"  $1      $@"; $($1)
50 endif
51 # The user has explicitly enabled quiet compilation.
52 ifeq ($(V),0)
53 quiet = @echo "  $1     $@"; $($1)
54 endif
55 # Otherwise, print the full command line.
56 quiet ?= $($1)
57
58 %.o: %.cc $(all_deps)
59         $(call quiet,CXX) -c $(CXXFLAGS) $< -o $@
60
61 %.o: %.c $(all_deps)
62         $(call quiet,CC) -c $(CFLAGS) $< -o $@
63
64 %.elc: %.el
65         $(call quiet,EMACS) -batch -f batch-byte-compile $<
66
67 .deps/%.d: %.c $(all_deps)
68         @set -e; rm -f $@; mkdir -p $$(dirname $@) ; \
69         $(CC) -M $(CPPFLAGS) $(CFLAGS) $< > $@.$$$$; \
70         sed 's,'$$(basename $*)'\.o[ :]*,$*.o $@ : ,g' < $@.$$$$ > $@; \
71         rm -f $@.$$$$
72
73 .deps/%.d: %.cc $(all_deps)
74         @set -e; rm -f $@; mkdir -p $$(dirname $@) ; \
75         $(CXX) -M $(CPPFLAGS) $(CXXFLAGS) $< > $@.$$$$; \
76         sed 's,'$$(basename $*)'\.o[ :]*,$*.o $@ : ,g' < $@.$$$$ > $@; \
77         rm -f $@.$$$$
78
79 DEPS := $(SRCS:%.c=.deps/%.d)
80 DEPS := $(DEPS:%.cc=.deps/%.d)
81 -include $(DEPS)
82
83 .PHONY : clean
84 clean:
85         rm -f $(CLEAN); rm -rf .deps