ox-gemini/Makefile
Omar Polo 900c15ca0b use ${EMACS} instead of `emacs'
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>
2021-08-17 09:51:35 -07:00

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