summaryrefslogtreecommitdiff
path: root/contrib/emacs/Makefile
blob: a48540a92b4aa5140a87469b36c1f9b3d8e46e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
## Build and install stuff
 
EMACS = emacs
 
ELC = git.elc vc-git.elc git-blame.elc
INSTALL ?= install
INSTALL_ELC = $(INSTALL) -m 644
prefix ?= $(HOME)
emacsdir = $(prefix)/share/emacs/site-lisp
RM ?= rm -f
 
all: $(ELC)
 
install: all
	$(INSTALL) -d $(DESTDIR)$(emacsdir)
	$(INSTALL_ELC) $(ELC:.elc=.el) $(ELC) $(DESTDIR)$(emacsdir)
 
%.elc: %.el
	$(EMACS) -batch -f batch-byte-compile $<
 
clean:; $(RM) $(ELC)