mirror of
https://github.com/correl/melpa.git
synced 2024-12-22 19:17:27 +00:00
Allow Emacs executable to be overriden in Makefile
e.g. make json EMACS=/Applications/Emacs.app/Contents/MacOS/Emacs
This commit is contained in:
parent
0d2445fcd4
commit
c7a127b9c6
1 changed files with 2 additions and 1 deletions
3
Makefile
3
Makefile
|
@ -3,8 +3,9 @@ PKGDIR := ./packages
|
||||||
RCPDIR := ./recipes
|
RCPDIR := ./recipes
|
||||||
HTMLDIR := ./html
|
HTMLDIR := ./html
|
||||||
WORKDIR := ./working
|
WORKDIR := ./working
|
||||||
|
EMACS := emacs
|
||||||
|
|
||||||
EVAL := emacs --no-site-file --batch -l package-build.el --eval
|
EVAL := $(EMACS) --no-site-file --batch -l package-build.el --eval
|
||||||
|
|
||||||
|
|
||||||
all: build json index
|
all: build json index
|
||||||
|
|
Loading…
Reference in a new issue