]> git.notmuchmail.org Git - notmuch/blob - Makefile.local
emacs: Move emacs UI (currently just one file) to subdirectory.
[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
37 install-desktop:
38         install -d $(DESTDIR)$(desktop_dir)
39         desktop-file-install --mode 0644 --dir $(DESTDIR)$(desktop_dir) notmuch.desktop
40
41 install-bash:
42         install -d $(DESTDIR)$(bash_completion_dir)
43         install -m0644 contrib/notmuch-completion.bash \
44                 $(DESTDIR)$(bash_completion_dir)/notmuch
45
46 install-zsh:
47         install -d $(DESTDIR)$(zsh_completion_dir)
48         install -m0644 contrib/notmuch-completion.zsh \
49                 $(DESTDIR)$(zsh_completion_dir)/notmuch
50
51 SRCS  := $(SRCS) $(notmuch_client_srcs)
52 CLEAN := $(CLEAN) notmuch $(notmuch_client_modules) notmuch.elc notmuch.1.gz