X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=contrib%2Femacs%2FMakefile;h=a48540a92b4aa5140a87469b36c1f9b3d8e46e7f;hb=0bb3a0ba9e3cbb283a747e4736bcf7484d076a73;hp=8554e3967cc692c6916e5aee35952074d07e8bf0;hpb=0a98f9d13802880a68ce6564b9f47b1c3e3341c7;p=git.git diff --git a/contrib/emacs/Makefile b/contrib/emacs/Makefile index 8554e3967..a48540a92 100644 --- a/contrib/emacs/Makefile +++ b/contrib/emacs/Makefile @@ -7,14 +7,15 @@ INSTALL ?= install INSTALL_ELC = $(INSTALL) -m 644 prefix ?= $(HOME) emacsdir = $(prefix)/share/emacs/site-lisp +RM ?= rm -f all: $(ELC) install: all - $(INSTALL) -d $(emacsdir) - $(INSTALL_ELC) $(ELC) $(emacsdir) + $(INSTALL) -d $(DESTDIR)$(emacsdir) + $(INSTALL_ELC) $(ELC:.elc=.el) $(ELC) $(DESTDIR)$(emacsdir) %.elc: %.el $(EMACS) -batch -f batch-byte-compile $< -clean:; rm -f $(ELC) +clean:; $(RM) $(ELC)