read-tree: fix eye-candy.
[git/jrn.git] / contrib / emacs / Makefile
blobd3619db510f4e4878eba49fcd80da3e78d564911
1 ## Build and install stuff
3 EMACS = emacs
5 ELC = git.elc vc-git.elc
6 INSTALL = install
7 INSTALL_ELC = $(INSTALL) -m 644
8 prefix = $(HOME)
9 emacsdir = $(prefix)/share/emacs/site-lisp
11 all: $(ELC)
13 install: all
14 $(INSTALL) -d $(emacsdir)
15 $(INSTALL_ELC) $(ELC) $(emacsdir)
17 %.elc: %.el
18 $(EMACS) --batch --eval '(byte-compile-file "$<")'
20 clean:; rm -f $(ELC)