diff options
author | Mark Wooding <mdw@distorted.org.uk> | 2006-03-05 16:14:31 +0000 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-05 11:32:49 -0800 |
commit | 8911db70f8b84b2e96b328eeca9e5d7701c22479 (patch) | |
tree | 86eaa3f089387ed70979029da53920d846c55c2e /contrib/emacs | |
parent | gitignore: Ignore some more boring things. (diff) | |
download | tgif-8911db70f8b84b2e96b328eeca9e5d7701c22479.tar.xz |
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>
Diffstat (limited to 'contrib/emacs')
-rw-r--r-- | contrib/emacs/.gitignore | 1 | ||||
-rw-r--r-- | contrib/emacs/Makefile | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/contrib/emacs/.gitignore b/contrib/emacs/.gitignore new file mode 100644 index 0000000000..c531d9867f --- /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 0000000000..d3619db510 --- /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) |