e14421b9aa
Makefiles in subdirectories now use existing value of INSTALL, bindir, mandir if it is set, allowing those to be set in main Makefile or in included config.mak. Main Makefile exports variables which it sets. Accidentally it renames bin to bindir in Documentation/Makefile (should be bindir from start, but is unused, perhaps to be removed). Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
21 lines
356 B
Makefile
21 lines
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)
|