5 $(dir)/notmuch-lib.el \
7 $(dir)/notmuch-query.el \
8 $(dir)/notmuch-show.el \
9 $(dir)/notmuch-wash.el \
10 $(dir)/notmuch-hello.el \
11 $(dir)/notmuch-mua.el \
12 $(dir)/notmuch-address.el \
13 $(dir)/notmuch-maildir-fcc.el \
14 $(dir)/notmuch-message.el \
15 $(dir)/notmuch-crypto.el \
16 $(dir)/notmuch-tag.el \
18 $(dir)/notmuch-print.el
21 $(srcdir)/$(dir)/notmuch-logo.png
23 emacs_bytecode = $(emacs_sources:.el=.elc)
25 %.elc: %.el $(global_deps)
26 $(call quiet,EMACS) --directory emacs -batch -f batch-byte-compile $<
28 ifeq ($(WITH_EMACS),1)
29 ifeq ($(HAVE_EMACS),1)
30 all: $(emacs_bytecode)
33 install: install-emacs
38 mkdir -p "$(DESTDIR)$(emacslispdir)"
39 install -m0644 $(emacs_sources) "$(DESTDIR)$(emacslispdir)"
40 ifeq ($(HAVE_EMACS),1)
41 install -m0644 $(emacs_bytecode) "$(DESTDIR)$(emacslispdir)"
43 mkdir -p "$(DESTDIR)$(emacsetcdir)"
44 install -m0644 $(emacs_images) "$(DESTDIR)$(emacsetcdir)"
46 CLEAN := $(CLEAN) $(emacs_bytecode)