900c15ca0b
This makes possible to use a different emacs executable to run the tests. $ make # use system' emacs ... $ make EMACS=/path/to/emacs # use the provided emacs executable ... Signed-off-by: Justin Abrahms <justin@abrah.ms>
17 lines
254 B
Makefile
17 lines
254 B
Makefile
EMACS = emacs
|
|
|
|
update:
|
|
${EMACS} -batch -l test/make-update.el
|
|
|
|
compile: clean lint
|
|
${EMACS} --version
|
|
${EMACS} -batch -l test/elpa.el -l test/compile.el
|
|
|
|
clean:
|
|
rm -f *.elc
|
|
|
|
lint:
|
|
${EMACS} --batch -l test/lint.el
|
|
|
|
.PHONY: update compile test clean
|