]> code.delx.au - gnu-emacs-elpa/blob - Makefile
Improve documentation and Makefile.
[gnu-emacs-elpa] / Makefile
1 all: clean install compile test
2
3 benchjs:
4 node_modules/.bin/matcha
5
6 benchel:
7 emacs -Q -L . -l context-coloring -l benchmark/scenarios.el
8
9 compile:
10 emacs -batch -f batch-byte-compile *.el
11
12 clean:
13 rm -rf node_modules
14 rm *.elc
15
16 install:
17 npm install --production
18
19 test:
20 node_modules/.bin/mocha
21 emacs -batch -L . -l ert -l context-coloring -l test/context-coloring-test.el -f ert-run-tests-batch-and-exit
22
23 .PHONY: all benchjs benchel compile clean install test