summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9eada4c24e0dc940896f05c502005649d8a9e976 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
EMACS=emacs
CASK ?= cask

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