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