]> git.notmuchmail.org Git - notmuch/blob - Makefile.local
Makefile: Simplify the conditional message of the all target.
[notmuch] / Makefile.local
1 notmuch_client_srcs =           \
2         $(notmuch_compat_srcs)  \
3         debugger.c              \
4         gmime-filter-reply.c    \
5         notmuch.c               \
6         notmuch-config.c        \
7         notmuch-count.c         \
8         notmuch-dump.c          \
9         notmuch-new.c           \
10         notmuch-reply.c         \
11         notmuch-restore.c       \
12         notmuch-search.c        \
13         notmuch-search-tags.c   \
14         notmuch-setup.c         \
15         notmuch-show.c          \
16         notmuch-tag.c           \
17         notmuch-time.c          \
18         query-string.c          \
19         show-message.c          \
20         json.c
21
22 notmuch_client_modules = $(notmuch_client_srcs:.c=.o)
23 notmuch: $(notmuch_client_modules) lib/notmuch.a
24         $(call quiet,CXX,$(LDFLAGS)) $^ $(FINAL_LDFLAGS) -o $@
25
26 notmuch.1.gz: notmuch.1
27         $(call quiet,gzip) --stdout $^ > $@
28
29 install: all notmuch.1.gz
30         for d in $(DESTDIR)$(prefix)/bin/ $(DESTDIR)$(prefix)/share/man/man1 ; \
31         do \
32                 install -d $$d ; \
33         done ;
34         install notmuch $(DESTDIR)$(prefix)/bin/
35         install -m0644 notmuch.1.gz $(DESTDIR)$(prefix)/share/man/man1/
36         @echo ""
37         @echo "Notmuch is now installed."
38         @echo ""
39         @echo "You may now want to install additional components to support using notmuch"
40         @echo "together with other software packages:"
41         @echo ""
42         @echo " make install-emacs"
43         @echo " make install-bash"
44         @echo " make install-zsh"
45
46 install-desktop:
47         install -d $(DESTDIR)$(desktop_dir)
48         desktop-file-install --mode 0644 --dir $(DESTDIR)$(desktop_dir) notmuch.desktop
49
50 install-bash:
51         install -d $(DESTDIR)$(bash_completion_dir)
52         install -m0644 contrib/notmuch-completion.bash \
53                 $(DESTDIR)$(bash_completion_dir)/notmuch
54
55 install-zsh:
56         install -d $(DESTDIR)$(zsh_completion_dir)
57         install -m0644 contrib/notmuch-completion.zsh \
58                 $(DESTDIR)$(zsh_completion_dir)/notmuch
59
60 SRCS  := $(SRCS) $(notmuch_client_srcs)
61 CLEAN := $(CLEAN) notmuch $(notmuch_client_modules) notmuch.elc notmuch.1.gz