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