Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « emacs « contrib - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 350846de904b31fb9dd86fee0c64613a7632c6aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)