aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/Makefile.local
diff options
context:
space:
mode:
authorGravatar David Edmondson <dme@dme.org>2010-04-01 18:36:21 +0100
committerGravatar Carl Worth <cworth@cworth.org>2010-04-05 09:25:56 -0700
commite8414a72d478b55d2a5dd8b2fb30c67ee60b1732 (patch)
treec32ec20e765a0e6abc69d763136fdaa861f6fd49 /emacs/Makefile.local
parent3f8dfc36c470afa2ae0a342cee45c510281c77f9 (diff)
emacs: Move notmuch-show functionality to notmuch-show.el
To ease the transition to a JSON based implementation of `notmuch-show', move the current implementation into a separate file. Create `notmuch-lib.el' to hold common variables.
Diffstat (limited to 'emacs/Makefile.local')
-rw-r--r--emacs/Makefile.local5
1 files changed, 4 insertions, 1 deletions
diff --git a/emacs/Makefile.local b/emacs/Makefile.local
index ee402e00..95b6fa45 100644
--- a/emacs/Makefile.local
+++ b/emacs/Makefile.local
@@ -1,7 +1,10 @@
# -*- makefile -*-
dir := emacs
-emacs_sources := $(dir)/notmuch.el
+emacs_sources := \
+ $(dir)/notmuch-lib.el \
+ $(dir)/notmuch.el \
+ $(dir)/notmuch-show.el
emacs_bytecode := $(subst .el,.elc,$(emacs_sources))