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>
This commit is contained in:
Mark Wooding 2006-03-05 16:14:31 +00:00 committed by Junio C Hamano
parent 0aee3d6d4e
commit 8911db70f8
2 changed files with 21 additions and 0 deletions

1
contrib/emacs/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
*.elc

20
contrib/emacs/Makefile Normal file
View file

@ -0,0 +1,20 @@
## 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)