Release 0.19
[stgit.git] / contrib / Makefile
blob8556910e5458998752b6c6c1de5effc174e975c6
1 EMACS = emacs
3 ELC = stgit.elc
4 INSTALL ?= install
5 INSTALL_ELC = $(INSTALL) -m 644
6 prefix ?= $(HOME)
7 emacsdir = $(prefix)/share/emacs/site-lisp
8 RM ?= rm -f
10 all: $(ELC)
12 install: all
13 $(INSTALL) -d $(DESTDIR)$(emacsdir)
14 $(INSTALL_ELC) $(ELC:.elc=.el) $(ELC) $(DESTDIR)$(emacsdir)
16 %.elc: %.el
17 $(EMACS) -batch -f batch-byte-compile $<
19 clean:; $(RM) $(ELC)