summaryrefslogtreecommitdiff
path: root/Makefile
blob: 412a87be0da6554934bfe3fdc0595a42a5a7b5c6 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package-lint:
	cask exec emacs -Q --batch -l "package-lint.el" -f "package-lint-batch-and-exit" terminal-here.el

build :
	cask exec emacs -Q --batch --eval             \
	    "(progn                                \
	      (setq byte-compile-error-on-warn t)  \
	      (batch-byte-compile))" terminal-here.el

clean :
	@rm -f *.elc

test: build
	cask exec ert-runner

install:
	cask install

.PHONY:	all test install clean build