]> git.notmuchmail.org Git - notmuch/blob - Makefile.local
configure: Ignore more options that debhelper expects.
[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 add a third digit, (0.1.1, 0.1.2, etc.), and
11 # increment it occasionally, (such as after a big batch of commits are
12 # merged.
13 PACKAGE=notmuch
14 VERSION=0.1
15
16 RELEASE_HOST=notmuchmail.org
17 RELEASE_DIR=/srv/notmuchmail.org/www/releases
18 TAR_FILE=$(PACKAGE)-$(VERSION).tar.gz
19 SHA1_FILE=$(TAR_FILE).sha1
20 GPG_FILE=$(SHA1_FILE).asc
21
22 # Get settings from the output of configure by running it to generate
23 # Makefile.config if it doesn't exist yet. And add Makefile.config to
24 # our global dependency list.
25 include Makefile.config
26 global_deps += Makefile.config
27 Makefile.config: configure
28         @echo ""
29         @echo "Note: Calling ./configure with no command-line arguments. This is often fine,"
30         @echo "      but if you want to specify any arguments (such as an alternate prefix"
31         @echo "      into which to install), call ./configure explicitly and then make again."
32         @echo "      See \"./configure --help\" for more details."
33         @echo ""
34         ./configure
35
36 # Sub-directory Makefile.local fragments can append to these variables
37 # to have directory-specific cflags as necessary.
38 extra_cflags :=
39 extra_cxxflags :=
40
41 # Smash together user's values with our extra values
42 FINAL_CFLAGS = -DNOTMUCH_VERSION=$(VERSION) $(CFLAGS) $(WARN_CFLAGS) $(CONFIGURE_CFLAGS) $(extra_cflags)
43 FINAL_CXXFLAGS = $(CXXFLAGS) $(WARN_CXXFLAGS) $(CONFIGURE_CXXFLAGS) $(extra_cflags) $(extra_cxxflags)
44 FINAL_LDFLAGS = $(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),)
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         git archive --format=tar --prefix=$(PACKAGE)-$(VERSION)/ HEAD | gzip > $(TAR_FILE)
65         @echo "Source is ready for release in $(TAR_FILE)"
66
67 $(SHA1_FILE): $(TAR_FILE)
68         sha1sum $^ > $@
69
70 $(GPG_FILE): $(SHA1_FILE)
71         @echo "Please enter your GPG password to sign the checksum."
72         gpg --armor --sign $^ 
73
74 .PHONY: dist
75 dist: $(TAR_FILE)
76
77 .PHONY: release
78 release: release-verify-newer $(TAR_FILE) $(SHA1_FILE) $(GPG_FILE)
79         mkdir -p releases
80         scp $(TAR_FILE) $(SHA1_FILE) $(GPG_FILE) $(RELEASE_HOST):$(RELEASE_DIR)
81         mv $(TAR_FILE) $(SHA1_FILE) $(GPG_FILE) releases
82         ssh $(RELEASE_HOST) "rm -f $(RELEASE_DIR)/LATEST-$(PACKAGE)-[0-9]* && ln -s $(TAR_FILE) $(RELEASE_DIR)/LATEST-$(PACKAGE)-$(VERSION)"
83         git tag -s -m "$(PACKAGE) $(VERSION) release" $(VERSION)
84
85 .PHONY: release-verify-version
86 release-verify-version:
87         @echo -n "Checking that $(VERSION) is a two-component version..."
88         @if echo $(VERSION) | grep -q -v -x '[0-9]*\.[0-9]*'; then \
89                 (echo "Ouch." && \
90                  echo "Before releasing the notmuch version should be a two-component value." && false);\
91          else :; fi
92         @echo "Good."
93
94 .PHONY: release-verify-newer
95 release-verify-newer: release-verify-version
96         @echo -n "Checking that no $(VERSION) release already exists..."
97         @ssh $(RELEASE_HOST) test ! -e $(RELEASE_DIR)/$(TAR_FILE) \
98                 || (echo "Ouch." && echo "Found: $(RELEASE_HOST):$(RELEASE_DIR)/$(TAR_FILE)" \
99                 && echo "Refusing to replace an existing release." && false)
100         @echo "Good."
101
102 # The user has not set any verbosity, default to quiet mode and inform the
103 # user how to enable verbose compiles.
104 ifeq ($(V),)
105 quiet_DOC := "Use \"$(MAKE) V=1\" to see the verbose compile lines.\n"
106 quiet = @printf $(quiet_DOC)$(eval quiet_DOC:=)"$1 $@\n"; $($(shell echo $1 | sed -e s'/ .*//'))
107 endif
108 # The user has explicitly enabled quiet compilation.
109 ifeq ($(V),0)
110 quiet = @printf "$1 $@\n"; $($(shell echo $1 | sed -e s'/ .*//'))
111 endif
112 # Otherwise, print the full command line.
113 quiet ?= $($(shell echo $1 | sed -e s'/ .*//'))
114
115 %.o: %.cc $(global_deps)
116         $(call quiet,CXX $(CXXFLAGS)) -c $(FINAL_CXXFLAGS) $< -o $@
117
118 %.o: %.c $(global_deps)
119         $(call quiet,CC $(CFLAGS)) -c $(FINAL_CFLAGS) $< -o $@
120
121 .deps/%.d: %.c $(global_deps)
122         @set -e; rm -f $@; mkdir -p $$(dirname $@) ; \
123         $(CC) -M $(CPPFLAGS) $(FINAL_CFLAGS) $< > $@.$$$$ 2>/dev/null ; \
124         sed 's,'$$(basename $*)'\.o[ :]*,$*.o $@ : ,g' < $@.$$$$ > $@; \
125         rm -f $@.$$$$
126
127 .deps/%.d: %.cc $(global_deps)
128         @set -e; rm -f $@; mkdir -p $$(dirname $@) ; \
129         $(CXX) -M $(CPPFLAGS) $(FINAL_CXXFLAGS) $< > $@.$$$$ 2>/dev/null ; \
130         sed 's,'$$(basename $*)'\.o[ :]*,$*.o $@ : ,g' < $@.$$$$ > $@; \
131         rm -f $@.$$$$
132
133 DEPS := $(SRCS:%.c=.deps/%.d)
134 DEPS := $(DEPS:%.cc=.deps/%.d)
135 -include $(DEPS)
136
137 .PHONY : clean
138 clean:
139         rm -f $(CLEAN); rm -rf .deps
140
141 notmuch_client_srcs =           \
142         $(notmuch_compat_srcs)  \
143         debugger.c              \
144         gmime-filter-reply.c    \
145         notmuch.c               \
146         notmuch-config.c        \
147         notmuch-count.c         \
148         notmuch-dump.c          \
149         notmuch-new.c           \
150         notmuch-reply.c         \
151         notmuch-restore.c       \
152         notmuch-search.c        \
153         notmuch-search-tags.c   \
154         notmuch-setup.c         \
155         notmuch-show.c          \
156         notmuch-tag.c           \
157         notmuch-time.c          \
158         query-string.c          \
159         show-message.c          \
160         json.c
161
162 notmuch_client_modules = $(notmuch_client_srcs:.c=.o)
163
164 notmuch: $(notmuch_client_modules) lib/libnotmuch.a
165         $(call quiet,CC $(CFLAGS)) $^ $(FINAL_LDFLAGS) -o $@
166
167 notmuch-shared: $(notmuch_client_modules) lib/libnotmuch.so
168         $(call quiet,CC $(CFLAGS)) -Llib -lnotmuch $(notmuch_client_modules) $(FINAL_LDFLAGS) -o $@
169
170 notmuch.1.gz: notmuch.1
171         gzip --stdout $^ > $@
172
173 .PHONY: install
174 install: all notmuch.1.gz
175         mkdir -p $(DESTDIR)$(mandir)/man1
176         install -m0644 notmuch.1.gz $(DESTDIR)$(mandir)/man1/
177         mkdir -p $(DESTDIR)$(prefix)/bin/
178         install notmuch-shared $(DESTDIR)$(prefix)/bin/notmuch
179 ifeq ($(MAKECMDGOALS), install)
180         @echo ""
181         @echo "Notmuch is now installed to $(DESTDIR)$(prefix)"
182         @echo ""
183         @echo "To run notmuch from emacs, each user should add the following line to ~/.emacs:"
184         @echo ""
185         @echo " (require 'notmuch)"
186         @echo ""
187         @echo "And should then run \"M-x notmuch\" from within emacs or run \"emacs -f notmuch\""
188 endif
189
190 .PHONY: install-desktop
191 install-desktop:
192         mkdir -p $(DESTDIR)$(desktop_dir)
193         desktop-file-install --mode 0644 --dir $(DESTDIR)$(desktop_dir) notmuch.desktop
194
195 SRCS  := $(SRCS) $(notmuch_client_srcs)
196 CLEAN := $(CLEAN) notmuch notmuch-shared $(notmuch_client_modules) notmuch.elc notmuch.1.gz