summaryrefslogtreecommitdiff
path: root/Makefile
blob: a9a8e863a755a02e986a8334518e0547030e4939 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
emacs ?= emacs
bemacs = $(emacs) -batch -l test/elpa.el

update:
	$(emacs) -batch -l test/make-update.el

compile: clean
	$(bemacs) -l test/make-compile.el

test:
	$(bemacs) -l test/make-test.el

clean:
	rm -f *.elc

.PHONY: update compile test clean