]> code.delx.au - gnu-emacs-elpa/blob - Makefile
Makefile: bring back cask for undercover to load
[gnu-emacs-elpa] / Makefile
1 CASK = ~/.cask/bin/cask
2 emacs ?= emacs
3 all: test
4
5 test: clean
6 $(CASK) exec emacs -Q -batch -l tiny-test.el -l tiny.el -f ert-run-tests-batch-and-exit
7
8 compile:
9 $(emacs) -Q -batch -f batch-byte-compile tiny.el
10
11 clean:
12 rm -f f.elc
13
14 .PHONY: all test