зеркало из https://github.com/microsoft/git.git
21 строка
356 B
Makefile
21 строка
356 B
Makefile
## 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)
|