1 all: notmuch notmuch.1.gz
5 notmuch_client_srcs = \
16 notmuch-search-tags.c \
24 notmuch_client_modules = $(notmuch_client_srcs:.c=.o)
25 notmuch: $(notmuch_client_modules) lib/notmuch.a
26 $(call quiet,CXX) $^ $(LDFLAGS) -o $@
28 notmuch.1.gz: notmuch.1
29 $(call quiet,gzip) --stdout $^ > $@
31 install: all notmuch.1.gz
32 for d in $(DESTDIR)$(prefix)/bin/ $(DESTDIR)$(prefix)/share/man/man1 \
33 $(DESTDIR)$(bash_completion_dir) ; \
37 install notmuch $(DESTDIR)$(prefix)/bin/
38 install -m0644 notmuch.1.gz $(DESTDIR)$(prefix)/share/man/man1/
39 install contrib/notmuch-completion.bash \
40 $(DESTDIR)$(bash_completion_dir)/notmuch
42 install-emacs: install emacs
43 for d in $(DESTDIR)/$(emacs_lispdir) ; \
47 install -m0644 notmuch.el $(DESTDIR)$(emacs_lispdir)
48 install -m0644 notmuch.elc $(DESTDIR)$(emacs_lispdir)
50 SRCS := $(SRCS) $(notmuch_client_srcs)
51 CLEAN := $(CLEAN) notmuch $(notmuch_client_modules) notmuch.elc notmuch.1.gz