1
0
mirror of https://github.com/git/git.git synced 2024-10-01 09:33:22 +02:00
git/contrib/emacs/Makefile

21 lines
360 B
Makefile
Raw Normal View History

## 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)