]> git.notmuchmail.org Git - notmuch/blobdiff - emacs/Makefile.local
git: Ignore `notmuch-shared'
[notmuch] / emacs / Makefile.local
index 6e7d2afd1391400f5f62bb1d2d9fe99b07b2565b..95b6fa456c48d57eab48db2833d0c20e84454ae3 100644 (file)
@@ -1,13 +1,18 @@
+# -*- 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))
 
 emacs: $(emacs_bytecode)
 
 install-emacs: install emacs
-       install -d $(DESTDIR)/$(emacs_lispdir)
-       install -m0644 $(emacs_sources) $(emacs_bytecode) $(DESTDIR)$(emacs_lispdir)
+       $(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 ""