mirror of
https://github.com/git/git.git
synced 2024-11-02 15:28:21 +01:00
5ced057221
Add git-blame as a candidate to the byte-compilation. batch-byte-compile is the prefered way to byte-compile files in batch mode. Use it instead of the interactive function. Signed-off-by: Xavier Maillard <zedek@gnu.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
20 lines
360 B
Makefile
20 lines
360 B
Makefile
## Build and install stuff
|
|
|
|
EMACS = emacs
|
|
|
|
ELC = git.elc vc-git.elc git-blame.elc
|
|
INSTALL ?= install
|
|
INSTALL_ELC = $(INSTALL) -m 644
|
|
prefix ?= $(HOME)
|
|
emacsdir = $(prefix)/share/emacs/site-lisp
|
|
|
|
all: $(ELC)
|
|
|
|
install: all
|
|
$(INSTALL) -d $(emacsdir)
|
|
$(INSTALL_ELC) $(ELC) $(emacsdir)
|
|
|
|
%.elc: %.el
|
|
$(EMACS) -batch -f batch-byte-compile $<
|
|
|
|
clean:; rm -f $(ELC)
|