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