branch: elpa/buttercup commit 89c00aa99b4c68f1d1ca3de873cf9266aa099067 Author: Jorgen Schaefer <cont...@jorgenschaefer.de> Commit: Jorgen Schaefer <cont...@jorgenschaefer.de>
Makefile: Make the emacs command configurable --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fc542ac..7d2d6ab 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,9 @@ +EMACS := emacs + .PHONY: test all: test test: - emacs -batch -L . -l buttercup.el -f buttercup-markdown-runner README.md - emacs -batch -L . -l buttercup-test.el -f buttercup-run + $(EMACS) -batch -L . -l buttercup.el -f buttercup-markdown-runner README.md + $(EMACS) -batch -L . -l buttercup-test.el -f buttercup-run