From 22c2d3825cff157d59e5b9d22570ca2465939c6f Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 5 Jun 2016 15:13:20 -0400 Subject: [PATCH] Add a "make check" target that uses chktex. --- makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 6e87253..7a9df64 100644 --- a/makefile +++ b/makefile @@ -99,14 +99,18 @@ $(PN).bbl: $(SRCS) | $(PN).aux bibtex $(PN).aux +# Run chktex to find silly mistakes. There is some exit code weirdness +# (Savannah bug 45979), so we just look for empty output. +.PHONY: check +check: + @[ -z "$(shell chktex -q mjotex.sty)" ] + # Clean up leftover junk. .PHONY: clean clean: rm -f *.{aux,bbl,bcf,bib,blg,lof,log,nav,out,pdf,snm,toc,xml} rm -rf dist/ - - # If this document will be published, the publisher isn't going to # have your BibTeX database or your mjotex files. So, you need to # package them up along with the code for your document. This target -- 2.43.2