]> code.delx.au - gnu-emacs-elpa/blob - packages/tiny/Makefile
Merge commit '3007b2917d71a7d66eb94876536dfd80b0661d40' 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