]> git.notmuchmail.org Git - notmuch/blob - Makefile.local
51a83a8c7b3635b1f47a50edf525538fc261a44b
[notmuch] / Makefile.local
1 # -*- makefile -*-
2
3 # Here's the (hopefully simple) versioning scheme.
4 #
5 # Releases of notmuch have a two-digit version (0.1, 0.2, etc.). We
6 # increment the second digit for each release and increment the first
7 # digit when we reach particularly major milestones of usability.
8 #
9 # Between releases, (such as when compiling notmuch from the git
10 # repository), we let git append identification of the actual commit.
11 PACKAGE=notmuch
12
13 IS_GIT=$(shell if [ -d .git ] ; then echo yes ; else echo no; fi)
14
15 VERSION:=$(shell cat version)
16 ifneq ($(MAKECMDGOALS),release)
17 ifneq ($(MAKECMDGOALS),release-message)
18 ifeq ($(IS_GIT),yes)
19 VERSION:=$(shell git describe --match '[0-9.]*')
20 endif
21 endif
22 endif
23
24 RELEASE_HOST=notmuchmail.org
25 RELEASE_DIR=/srv/notmuchmail.org/www/releases
26 RELEASE_URL=http://notmuchmail.org/releases
27 TAR_FILE=$(PACKAGE)-$(VERSION).tar.gz
28 SHA1_FILE=$(TAR_FILE).sha1
29 GPG_FILE=$(SHA1_FILE).asc
30
31 # Smash together user's values with our extra values
32 FINAL_CFLAGS = -DNOTMUCH_VERSION=$(VERSION) $(CFLAGS) $(WARN_CFLAGS) $(CONFIGURE_CFLAGS) $(extra_cflags)
33 FINAL_CXXFLAGS = $(CXXFLAGS) $(WARN_CXXFLAGS) $(CONFIGURE_CXXFLAGS) $(extra_cflags) $(extra_cxxflags)
34 FINAL_NOTMUCH_LDFLAGS = $(LDFLAGS) -Llib -lnotmuch
35 FINAL_NOTMUCH_LINKER = CC
36 ifneq ($(LINKER_RESOLVES_LIBRARY_DEPENDENCIES),1)
37 FINAL_NOTMUCH_LDFLAGS += $(CONFIGURE_LDFLAGS)
38 FINAL_NOTMUCH_LINKER = CXX
39 endif
40 FINAL_LIBNOTMUCH_LDFLAGS = $(LDFLAGS) $(CONFIGURE_LDFLAGS)
41
42 .PHONY: all
43 all: notmuch notmuch-shared notmuch.1.gz
44 ifeq ($(MAKECMDGOALS),)
45 ifeq ($(shell cat .first-build-message),)
46         @NOTMUCH_FIRST_BUILD=1 $(MAKE) --no-print-directory all
47         @echo ""
48         @echo "Compilation of notmuch is now complete. You can install notmuch with:"
49         @echo ""
50         @echo " make install"
51         @echo ""
52         @echo "Note that depending on the prefix to which you are installing"
53         @echo "you may need root permission (such as \"sudo make install\")."
54         @echo "See \"./configure --help\" for help on setting an alternate prefix."
55         @echo Printed > .first-build-message
56 endif
57 endif
58
59 .PHONY: test
60 test: all
61         @./test/notmuch-test
62
63 $(TAR_FILE):
64         git archive --format=tar --prefix=$(PACKAGE)-$(VERSION)/ HEAD > $(TAR_FILE).tmp
65         echo $(VERSION) > version.tmp
66         tar --append -f $(TAR_FILE).tmp --transform s_^_$(PACKAGE)-$(VERSION)/_  --transform 's_.tmp$$__' version.tmp
67         rm version.tmp
68         gzip < $(TAR_FILE).tmp > $(TAR_FILE)
69         @echo "Source is ready for release in $(TAR_FILE)"
70
71 $(SHA1_FILE): $(TAR_FILE)
72         sha1sum $^ > $@
73
74 $(GPG_FILE): $(SHA1_FILE)
75         @echo "Please enter your GPG password to sign the checksum."
76         gpg --armor --sign $^ 
77
78 .PHONY: dist
79 dist: $(TAR_FILE)
80
81 # We invoke make recursively only to force ordering of our phony
82 # targets in the case of parallel invocation of make (-j).
83 #
84 # We carefully ensure that our VERSION variable is passed down to any
85 # sub-ordinate make invocations (which won't otherwhise know that they
86 # are part of the release and need to take the version from the
87 # version file).
88 .PHONY: release
89 release: verify-no-dirty-code
90         $(MAKE) VERSION=$(VERSION) verify-newer
91         $(MAKE) VERSION=$(VERSION) test
92         $(MAKE) VERSION=$(VERSION) $(GPG_FILE)
93         scp $(TAR_FILE) $(SHA1_FILE) $(GPG_FILE) $(RELEASE_HOST):$(RELEASE_DIR)
94         ssh $(RELEASE_HOST) "rm -f $(RELEASE_DIR)/LATEST-$(PACKAGE)-[0-9]* && ln -s $(TAR_FILE) $(RELEASE_DIR)/LATEST-$(PACKAGE)-$(VERSION)"
95         mkdir -p releases
96         mv $(TAR_FILE) $(SHA1_FILE) $(GPG_FILE) releases
97         git tag -s -m "$(PACKAGE) $(VERSION) release" $(VERSION)
98         git push origin $(VERSION)
99         $(MAKE) VERSION=$(VERSION) release-message > $(PACKAGE)-$(VERSION).announce
100         @echo "Please send a release announcement using $(PACKAGE)-$(VERSION).announce as a template."
101
102 .PHONY: release-message
103 release-message:
104         @echo "To: notmuch@notmuchmail.org"
105         @echo "Subject: $(PACKAGE) release $(VERSION) now available"
106         @echo ""
107         @echo "Where to obtain notmuch $(VERSION)"
108         @echo "==========================="
109         @echo "  $(RELEASE_URL)/$(TAR_FILE)"
110         @echo ""
111         @echo "Which can be verified with:"
112         @echo ""
113         @echo "  $(RELEASE_URL)/$(SHA1_FILE)"
114         @echo -n "  "
115         @cat releases/$(SHA1_FILE)
116         @echo ""
117         @echo "  $(RELEASE_URL)/$(GPG_FILE)"
118         @echo "  (signed by `getent passwd "$$USER" | cut -d: -f 5 | cut -d, -f 1`)"
119         @echo ""
120         @echo "What's new in notmuch $(VERSION)"
121         @echo "========================="
122         @sed -ne '/^[Nn]otmuch $(VERSION)/{n;n;b NEWS}; d; :NEWS /^===/q; {p;n;b NEWS}' < NEWS | head -n -2
123         @echo ""
124         @echo "What is notmuch"
125         @echo "==============="
126         @echo "Notmuch is a system for indexing, searching, reading, and tagging"
127         @echo "large collections of email messages in maildir or mh format. It uses"
128         @echo "the Xapian library to provide fast, full-text search with a convenient"
129         @echo "search syntax."
130         @echo ""
131         @echo "For more about notmuch, see http://notmuchmail.org"
132
133 .PHONY: verify-no-dirty-code
134 verify-no-dirty-code: verify-version
135 ifeq ($(IS_GIT),yes)
136         @printf "Checking that source tree is clean..."
137 ifneq ($(shell git ls-files -m),)
138         @echo "No"
139         @echo "The following files have been modified since the most recent git commit:"
140         @echo ""
141         @git ls-files -m
142         @echo ""
143         @echo "The release will be made from the committed state, but perhaps you meant"
144         @echo "to commit this code first? Please clean this up to make it more clear."
145         @false
146 else
147         @echo "Good"
148 endif
149 endif
150
151 .PHONY: verify-version
152 verify-version:
153         @echo -n "Checking that $(VERSION) consists only of digits and periods..."
154         @if echo $(VERSION) | grep -q -v -x '[0-9.]*'; then \
155                 (echo "No." && \
156                  echo "Please follow the instructions in RELEASING to choose a version" && false) \
157          else :; fi
158         @echo "Good."
159
160 .PHONY: verify-newer
161 verify-newer:
162         @echo -n "Checking that no $(VERSION) release already exists..."
163         @ssh $(RELEASE_HOST) test ! -e $(RELEASE_DIR)/$(TAR_FILE) \
164                 || (echo "Ouch." && echo "Found: $(RELEASE_HOST):$(RELEASE_DIR)/$(TAR_FILE)" \
165                 && echo "Refusing to replace an existing release." \
166                 && echo "Don't forget to update \"version\" as described in RELEASING before release." && false)
167         @echo "Good."
168
169 # The user has not set any verbosity, default to quiet mode and inform the
170 # user how to enable verbose compiles.
171 ifeq ($(V),)
172 quiet_DOC := "Use \"$(MAKE) V=1\" to see the verbose compile lines.\n"
173 quiet = @printf $(quiet_DOC)$(eval quiet_DOC:=)"$1 $@\n"; $($(shell echo $1 | sed -e s'/ .*//'))
174 endif
175 # The user has explicitly enabled quiet compilation.
176 ifeq ($(V),0)
177 quiet = @printf "$1 $@\n"; $($(shell echo $1 | sed -e s'/ .*//'))
178 endif
179 # Otherwise, print the full command line.
180 quiet ?= $($(shell echo $1 | sed -e s'/ .*//'))
181
182 %.o: %.cc $(global_deps)
183         $(call quiet,CXX $(CXXFLAGS)) -c $(FINAL_CXXFLAGS) $< -o $@
184
185 %.o: %.c $(global_deps)
186         $(call quiet,CC $(CFLAGS)) -c $(FINAL_CFLAGS) $< -o $@
187
188 .deps/%.d: %.c $(global_deps)
189         @set -e; rm -f $@; mkdir -p $$(dirname $@) ; \
190         $(CC) -M $(CPPFLAGS) $(FINAL_CFLAGS) $< > $@.$$$$ 2>/dev/null ; \
191         sed 's,'$$(basename $*)'\.o[ :]*,$*.o $@ : ,g' < $@.$$$$ > $@; \
192         rm -f $@.$$$$
193
194 .deps/%.d: %.cc $(global_deps)
195         @set -e; rm -f $@; mkdir -p $$(dirname $@) ; \
196         $(CXX) -M $(CPPFLAGS) $(FINAL_CXXFLAGS) $< > $@.$$$$ 2>/dev/null ; \
197         sed 's,'$$(basename $*)'\.o[ :]*,$*.o $@ : ,g' < $@.$$$$ > $@; \
198         rm -f $@.$$$$
199
200 DEPS := $(SRCS:%.c=.deps/%.d)
201 DEPS := $(DEPS:%.cc=.deps/%.d)
202 -include $(DEPS)
203
204 .PHONY : clean
205 clean:
206         rm -f $(CLEAN); rm -rf .deps
207
208 # We don't (yet) have any distributed files not in the upstream repository.
209 # So distclean is currently identical to clean.
210 .PHONY: distclean
211 distclean: clean
212
213 notmuch_client_srcs =           \
214         debugger.c              \
215         gmime-filter-reply.c    \
216         gmime-filter-headers.c  \
217         notmuch.c               \
218         notmuch-config.c        \
219         notmuch-count.c         \
220         notmuch-dump.c          \
221         notmuch-new.c           \
222         notmuch-reply.c         \
223         notmuch-restore.c       \
224         notmuch-search.c        \
225         notmuch-search-tags.c   \
226         notmuch-setup.c         \
227         notmuch-show.c          \
228         notmuch-tag.c           \
229         notmuch-time.c          \
230         query-string.c          \
231         show-message.c          \
232         json.c
233
234 notmuch_client_modules = $(notmuch_client_srcs:.c=.o)
235
236 notmuch: $(notmuch_client_modules) lib/libnotmuch.a
237         $(call quiet,CXX $(CFLAGS)) $^ $(FINAL_LIBNOTMUCH_LDFLAGS) -o $@
238
239 notmuch-shared: $(notmuch_client_modules) lib/$(LINKER_NAME)
240         $(call quiet,$(FINAL_NOTMUCH_LINKER) $(CFLAGS)) $(notmuch_client_modules) $(FINAL_NOTMUCH_LDFLAGS) -o $@
241
242 notmuch.1.gz: notmuch.1
243         gzip --stdout $^ > $@
244
245 .PHONY: install
246 install: all notmuch.1.gz
247         mkdir -p $(DESTDIR)$(mandir)/man1
248         install -m0644 notmuch.1.gz $(DESTDIR)$(mandir)/man1/
249         mkdir -p $(DESTDIR)$(prefix)/bin/
250         install notmuch-shared $(DESTDIR)$(prefix)/bin/notmuch
251 ifeq ($(MAKECMDGOALS), install)
252         @echo ""
253         @echo "Notmuch is now installed to $(DESTDIR)$(prefix)"
254         @echo ""
255         @echo "To run notmuch from emacs, each user should add the following line to ~/.emacs:"
256         @echo ""
257         @echo " (require 'notmuch)"
258         @echo ""
259         @echo "And should then run \"M-x notmuch\" from within emacs or run \"emacs -f notmuch\""
260 endif
261
262 .PHONY: install-desktop
263 install-desktop:
264         mkdir -p $(DESTDIR)$(desktop_dir)
265         desktop-file-install --mode 0644 --dir $(DESTDIR)$(desktop_dir) notmuch.desktop
266
267 SRCS  := $(SRCS) $(notmuch_client_srcs)
268 CLEAN := $(CLEAN) notmuch notmuch-shared $(notmuch_client_modules) notmuch.elc notmuch.1.gz