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