Makefile: Add target checkdoc to check documentation guidelines of lisp files

Fixes #211
This commit is contained in:
fabacino
2017-08-04 11:31:04 +02:00
committed by Oleh Krehel
parent 83859c30fa
commit 240d717632
4 changed files with 8 additions and 9 deletions

View File

@@ -3,13 +3,16 @@ emacs ?= emacs
LOAD = -l avy.el -l avy-test.el
.PHONY: all test clean
.PHONY: all test clean checkdoc
all: compile test
all: compile test checkdoc
test:
$(emacs) -batch $(LOAD) -f ert-run-tests-batch-and-exit
checkdoc:
$(emacs) -batch -l targets/checkdoc.el
compile:
$(emacs) -batch -l targets/avy-init.el