]> code.delx.au - gnu-emacs-elpa/blob - packages/tiny/Makefile
Merge commit 'f0b45f4a010d8e5680f66c9a22f433386d023466' from context-coloring
[gnu-emacs-elpa] / packages / tiny / Makefile
1 emacs ?= emacs
2 all: test
3
4 test: clean
5 cask exec emacs -Q -batch -l tiny-test.el -l tiny.el -f ert-run-tests-batch-and-exit
6
7 compile:
8 $(emacs) -Q -batch -f batch-byte-compile tiny.el
9
10 clean:
11 rm -f f.elc
12
13 .PHONY: all test