]> git.notmuchmail.org Git - notmuch/blobdiff - emacs/Makefile.local
Makefiles: Eliminate the useless quiet_* functions.
[notmuch] / emacs / Makefile.local
index 6e7d2afd1391400f5f62bb1d2d9fe99b07b2565b..51d045c3e108a0478fc9ca908b9eb96633a41227 100644 (file)
@@ -1,12 +1,20 @@
+# -*- 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))
 
+.PHONY: emacs
 emacs: $(emacs_bytecode)
 
+.PHONY: install-emacs
 install-emacs: install emacs
-       install -d $(DESTDIR)/$(emacs_lispdir)
+       mkdir -p $(DESTDIR)/$(emacs_lispdir)
        install -m0644 $(emacs_sources) $(emacs_bytecode) $(DESTDIR)$(emacs_lispdir)
        @echo ""
        @echo "The notmuch emacs client is now installed."