From: Mark Wooding Date: Sun, 5 Mar 2006 16:14:31 +0000 (+0000) Subject: contrib/emacs/Makefile: Provide tool for byte-compiling files. X-Git-Tag: v1.3.0-rc1~45^2~13 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=8911db70f8b84b2e96b328eeca9e5d7701c22479;p=git.git contrib/emacs/Makefile: Provide tool for byte-compiling files. Signed-off-by: Mark Wooding Signed-off-by: Junio C Hamano --- diff --git a/contrib/emacs/.gitignore b/contrib/emacs/.gitignore new file mode 100644 index 000000000..c531d9867 --- /dev/null +++ b/contrib/emacs/.gitignore @@ -0,0 +1 @@ +*.elc diff --git a/contrib/emacs/Makefile b/contrib/emacs/Makefile new file mode 100644 index 000000000..d3619db51 --- /dev/null +++ b/contrib/emacs/Makefile @@ -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)