Blob


1 EMACS = emacs
3 .PHONY: all compile lint clean
5 all: compile lint
7 compile: vc-got.elc
9 lint:
10 ${EMACS} -Q --batch -L . -l targets/lint.el
12 clean:
13 rm -f *.elc
15 .SUFFIXES: .el .elc
16 .el.elc:
17 ${EMACS} -Q --batch -L . -f batch-byte-compile $<