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:
parent
0aee3d6d4e
commit
8911db70f8
1
contrib/emacs/.gitignore
vendored
Normal file
1
contrib/emacs/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
*.elc
|
20
contrib/emacs/Makefile
Normal file
20
contrib/emacs/Makefile
Normal 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)
|
Loading…
Reference in New Issue
Block a user