X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=emacs%2FMakefile.local;h=76cc64f9b66711c7894461b1521a794620fd4e76;hb=680cc4c11a6025da1809528419e923275f8f85b0;hp=b895d11a9d6978ae8ba75485f9e25efbeaddd6ff;hpb=ce6cfd6408e805aa8eee45131c4d6e6e4e62928a;p=notmuch diff --git a/emacs/Makefile.local b/emacs/Makefile.local index b895d11a..76cc64f9 100644 --- a/emacs/Makefile.local +++ b/emacs/Makefile.local @@ -1,20 +1,21 @@ -dir=emacs -emacs_sources= \ - $(dir)/notmuch.el +# -*- makefile -*- -emacs_bytecode=$(subst .el,.elc,$(emacs_sources)) +dir := emacs +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 - 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 ""