ox-gemini/Makefile
Omar Polo d680aacf9d improve `make lint'
Drop the checkdoc-batch library in favour of a simpler approach:
run checkdoc on all *.el files in the repo, bailing out on the first
encountered error.

While here, don't call checkdoc on eval.

Signed-off-by: Justin Abrahms <justin@abrah.ms>
2021-08-17 09:51:28 -07:00

15 lines
226 B
Makefile

update:
emacs -batch -l test/make-update.el
compile: clean lint
emacs --version
emacs -batch -l test/elpa.el -l test/compile.el
clean:
rm -f *.elc
lint:
emacs --batch -l test/lint.el
.PHONY: update compile test clean