]> code.delx.au - gnu-emacs-elpa/blob - Makefile
Add Travis CI.
[gnu-emacs-elpa] / Makefile
1 EMACS = emacs
2
3 all: clean compile test
4
5 bench:
6 ${EMACS} -Q \
7 -L . \
8 -L lib \
9 -l context-coloring \
10 -l benchmark/context-coloring-benchmark \
11 -f context-coloring-benchmark-run
12
13 compile:
14 ${EMACS} -Q -batch \
15 -L lib \
16 -f batch-byte-compile *.el lib/*.el
17
18 clean:
19 rm -f *.log benchmark/*.log *.elc lib/*.elc
20
21 test:
22 ${EMACS} -Q -batch \
23 -L . \
24 -L lib \
25 -l ert \
26 -l ert-async \
27 -l context-coloring \
28 -l test/context-coloring-test.el \
29 -f ert-run-tests-batch-and-exit
30
31 .PHONY: all bench compile clean test