X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=7a9df645e7066ed45043c65afac036ba91211d03;hb=2b6f9aa58154ba0d7d25a94f7f74674139b5ac92;hp=6e87253adffbc24d174f1271b984fb2ebc983632;hpb=a30866cb085731037db598fa0affc35ce6c573cb;p=mjotex.git 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