1
0
mirror of https://github.com/git/git.git synced 2024-10-04 01:41:30 +02:00
git/contrib/emacs/Makefile
Mark Wooding 8911db70f8 contrib/emacs/Makefile: Provide tool for byte-compiling files.
Signed-off-by: Mark Wooding <mdw@distorted.org.uk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-03-05 11:32:49 -08:00

21 lines
354 B
Makefile

## Build and install stuff
EMACS = emacs
ELC = git.elc vc-git.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 --eval '(byte-compile-file "$<")'
clean:; rm -f $(ELC)