X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=contrib%2Femacs%2FMakefile;h=24d931294180c10646249bbbe31b5215f9996a66;hb=a51609a1c1bdbcf87715d5bae08444d7185d49db;hp=98aa0aae9b2e9e4a758fa58e7dd1e1adc3214883;hpb=b9dcf846e20ed5287e239c9a0942c5d150081bab;p=git.git diff --git a/contrib/emacs/Makefile b/contrib/emacs/Makefile index 98aa0aae9..24d931294 100644 --- a/contrib/emacs/Makefile +++ b/contrib/emacs/Makefile @@ -2,19 +2,20 @@ EMACS = emacs -ELC = git.elc vc-git.elc git-blame.elc +ELC = git.elc git-blame.elc INSTALL ?= install INSTALL_ELC = $(INSTALL) -m 644 prefix ?= $(HOME) emacsdir = $(prefix)/share/emacs/site-lisp +RM ?= rm -f all: $(ELC) install: all $(INSTALL) -d $(DESTDIR)$(emacsdir) - $(INSTALL_ELC) $(ELC) $(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)