]> git.notmuchmail.org Git - notmuch/blob - Makefile.local
emacs: Adjust search refresh to use a target line not a target position.
[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 ifeq ($(MAKECMDGOALS), install)
37         @echo ""
38         @echo "Notmuch is now installed."
39         @echo ""
40         @echo "You may now want to install additional components to support using notmuch"
41         @echo "together with other software packages:"
42         @echo ""
43         @echo " make install-emacs"
44         @echo " make install-bash"
45         @echo " make install-zsh"
46         @echo ""
47 endif
48
49 install-desktop:
50         install -d $(DESTDIR)$(desktop_dir)
51         desktop-file-install --mode 0644 --dir $(DESTDIR)$(desktop_dir) notmuch.desktop
52
53 install-bash:
54         install -d $(DESTDIR)$(bash_completion_dir)
55         install -m0644 contrib/notmuch-completion.bash \
56                 $(DESTDIR)$(bash_completion_dir)/notmuch
57
58 install-zsh:
59         install -d $(DESTDIR)$(zsh_completion_dir)
60         install -m0644 contrib/notmuch-completion.zsh \
61                 $(DESTDIR)$(zsh_completion_dir)/notmuch
62
63 SRCS  := $(SRCS) $(notmuch_client_srcs)
64 CLEAN := $(CLEAN) notmuch $(notmuch_client_modules) notmuch.elc notmuch.1.gz