branch: master commit a0139c3f75d9986ba46dea95ce9908db91722311 Author: Jackson Ray Hamilton <jack...@jacksonrayhamilton.com> Commit: Jackson Ray Hamilton <jack...@jacksonrayhamilton.com>
Cleanup Makefile. --- Makefile | 14 ++++++++++---- 1 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 64b7d75..07313bb 100644 --- a/Makefile +++ b/Makefile @@ -4,20 +4,26 @@ benchjs: node_modules/.bin/matcha benchel: - emacs -Q -L . -l context-coloring -l benchmark/scenarios.el + emacs -Q -L . \ + -l context-coloring \ + -l benchmark/scenarios.el compile: - emacs -batch -f batch-byte-compile *.el + emacs -Q -batch -f batch-byte-compile *.el clean: rm -rf node_modules rm *.elc install: - npm install --production + npm install test: node_modules/.bin/mocha - emacs -batch -L . -l ert -l context-coloring -l test/context-coloring-test.el -f ert-run-tests-batch-and-exit + emacs -Q -batch -L . \ + -l ert \ + -l context-coloring \ + -l test/context-coloring-test.el \ + -f ert-run-tests-batch-and-exit .PHONY: all benchjs benchel compile clean install test