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