]> git.notmuchmail.org Git - notmuch/blob - Makefile.local
lib/messages.c: Make message searches stream as well.
[notmuch] / Makefile.local
1 all: notmuch notmuch.1.gz
2
3 emacs: notmuch.elc
4
5 notmuch_client_srcs =           \
6         debugger.c              \
7         gmime-filter-reply.c    \
8         notmuch.c               \
9         notmuch-config.c        \
10         notmuch-count.c         \
11         notmuch-dump.c          \
12         notmuch-new.c           \
13         notmuch-reply.c         \
14         notmuch-restore.c       \
15         notmuch-search.c        \
16         notmuch-setup.c         \
17         notmuch-show.c          \
18         notmuch-tag.c           \
19         notmuch-time.c          \
20         query-string.c          \
21         show-message.c
22
23 notmuch_client_modules = $(notmuch_client_srcs:.c=.o)
24 notmuch: $(notmuch_client_modules) lib/notmuch.a
25         $(call quiet,CXX) $^ $(LDFLAGS) -o $@
26
27 notmuch.1.gz: notmuch.1
28         $(call quiet,gzip) --stdout $^ > $@
29
30 install: all notmuch.1.gz
31         for d in $(DESTDIR)$(prefix)/bin/ $(DESTDIR)$(prefix)/share/man/man1 \
32                 $(DESTDIR)$(bash_completion_dir) ; \
33         do \
34                 install -d $$d ; \
35         done ;
36         install notmuch $(DESTDIR)$(prefix)/bin/
37         install -m0644 notmuch.1.gz $(DESTDIR)$(prefix)/share/man/man1/
38         install contrib/notmuch-completion.bash \
39                 $(DESTDIR)$(bash_completion_dir)/notmuch
40
41 install-emacs: install emacs
42         for d in $(DESTDIR)/$(emacs_lispdir) ; \
43         do \
44                 install -d $$d ; \
45         done ;
46         install -m0644 notmuch.el $(DESTDIR)$(emacs_lispdir)
47         install -m0644 notmuch.elc $(DESTDIR)$(emacs_lispdir)
48
49 SRCS  := $(SRCS) $(notmuch_client_srcs)
50 CLEAN := $(CLEAN) notmuch $(notmuch_client_modules) notmuch.elc notmuch.1.gz