]> code.delx.au - gnu-emacs-elpa/blob - Makefile
More benchmark improvements.
[gnu-emacs-elpa] / Makefile
1 all: clean install compile test
2
3 bench: benchjs benchel
4
5 benchjs:
6 node_modules/.bin/matcha
7
8 benchel:
9 emacs -Q -L . \
10 -l context-coloring \
11 -l benchmark/context-coloring-benchmark \
12 -f context-coloring-benchmark-run
13
14 compile:
15 emacs -Q -batch -f batch-byte-compile *.el
16
17 clean:
18 rm -f *.log benchmark/*.log *.elc
19
20 install:
21 npm install
22
23 test:
24 node_modules/.bin/mocha
25 emacs -Q -batch -L . \
26 -l ert \
27 -l context-coloring \
28 -l test/context-coloring-test.el \
29 -f ert-run-tests-batch-and-exit
30
31 .PHONY: all bench benchjs benchel compile clean install test