X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=emacs%2FMakefile.local;h=e5013b360bb4f03b8afc53bc7512fb9565d9e246;hb=57926bc7b0f784cbacb620fda0ee5157e2e0ff27;hp=52aca4efa89ac832838d6ac125f9ca0e71c22a97;hpb=e2dd4ac00b9979de34bd517fa57de56260d38755;p=notmuch diff --git a/emacs/Makefile.local b/emacs/Makefile.local index 52aca4ef..e5013b36 100644 --- a/emacs/Makefile.local +++ b/emacs/Makefile.local @@ -5,7 +5,13 @@ emacs_sources := \ $(dir)/notmuch-lib.el \ $(dir)/notmuch.el \ $(dir)/notmuch-query.el \ - $(dir)/notmuch-show.el + $(dir)/notmuch-show.el \ + $(dir)/notmuch-wash.el \ + $(dir)/notmuch-hello.el \ + $(dir)/notmuch-mua.el + +emacs_images := \ + $(dir)/notmuch-logo.png emacs_bytecode := $(subst .el,.elc,$(emacs_sources)) @@ -20,10 +26,11 @@ install: install-emacs .PHONY: install-emacs install-emacs: - mkdir -p $(DESTDIR)/$(emacs_lispdir) - install -m0644 $(emacs_sources) $(DESTDIR)$(emacs_lispdir) + mkdir -p $(DESTDIR)$(emacslispdir) + install -m0644 $(emacs_sources) $(DESTDIR)$(emacslispdir) ifeq ($(HAVE_EMACS),1) - install -m0644 $(emacs_bytecode) $(DESTDIR)$(emacs_lispdir) + install -m0644 $(emacs_bytecode) $(DESTDIR)$(emacslispdir) endif + install -m0644 $(emacs_images) $(DESTDIR)$(emacslispdir) CLEAN := $(CLEAN) $(emacs_bytecode)