]> git.notmuchmail.org Git - notmuch/blobdiff - emacs/Makefile.local
notmuch-query.el: new file to support access to the notmuch database.
[notmuch] / emacs / Makefile.local
index 17ede8635e053326e51c83dd3ac83ab6433c73a1..626a4e51b5cc9e5d8ec366232a6bd2b262867554 100644 (file)
@@ -1,19 +1,19 @@
+# -*- makefile -*-
+
 dir := emacs
-emacs_sources := $(dir)/notmuch.el
+emacs_sources := \
+       $(dir)/notmuch-lib.el \
+       $(dir)/notmuch.el \
+       $(dir)/notmuch-query.el \
+       $(dir)/notmuch-show.el
 
 emacs_bytecode := $(subst .el,.elc,$(emacs_sources))
 
 emacs: $(emacs_bytecode)
 
 install-emacs: install emacs
-       for d in $(DESTDIR)/$(emacs_lispdir) ; \
-       do \
-               install -d $$d ; \
-       done ;
-       for f in $(emacs_sources) $(emacs_bytecode); \
-       do \
-               install -m0644 $$f $(DESTDIR)$(emacs_lispdir) ;\
-       done;
+       $(call quiet_mkdir, $(DESTDIR)/$(emacs_lispdir))
+       $(call quiet_install_data, $(emacs_sources) $(emacs_bytecode) $(DESTDIR)$(emacs_lispdir))
        @echo ""
        @echo "The notmuch emacs client is now installed."
        @echo ""