aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/Makefile.local
diff options
context:
space:
mode:
authorGravatar David Edmondson <dme@dme.org>2010-04-22 09:27:33 +0100
committerGravatar Carl Worth <cworth@cworth.org>2010-04-23 12:50:18 -0700
commite9394932f7ccf71755faed8965876e6869e0eacb (patch)
tree170171cbdca0ed81347e9ec2976ee125d2539a05 /emacs/Makefile.local
parentb65bcb5f8f14863f810cf41b9d8c14afacc76ae5 (diff)
emacs: Add notmuch-hello.el, a friendly frontend to notmuch
This is based on the prototype that Carl Worth described in the TODO file. It provides a search bar as well as support for recent searches, saved searches, and a list of all tags in the database (as well as the number of messages with each tag).
Diffstat (limited to 'emacs/Makefile.local')
-rw-r--r--emacs/Makefile.local7
1 files changed, 6 insertions, 1 deletions
diff --git a/emacs/Makefile.local b/emacs/Makefile.local
index f759c0dc..6a7fba9e 100644
--- a/emacs/Makefile.local
+++ b/emacs/Makefile.local
@@ -6,7 +6,11 @@ emacs_sources := \
$(dir)/notmuch.el \
$(dir)/notmuch-query.el \
$(dir)/notmuch-show.el \
- $(dir)/notmuch-wash.el
+ $(dir)/notmuch-wash.el \
+ $(dir)/notmuch-hello.el
+
+emacs_images := \
+ $(dir)/notmuch-logo.png
emacs_bytecode := $(subst .el,.elc,$(emacs_sources))
@@ -26,5 +30,6 @@ install-emacs:
ifeq ($(HAVE_EMACS),1)
install -m0644 $(emacs_bytecode) $(DESTDIR)$(emacslispdir)
endif
+ install -m0644 $(emacs_images) $(DESTDIR)$(emacslispdir)
CLEAN := $(CLEAN) $(emacs_bytecode)