aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: bf17bd7e6c933d983013bd6e811995cdb31c92e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
# Makefile with common procedures for managing a BibTeX repository.
#

lint: lint_biber lint_pybtex

# Thanks https://tex.stackexchange.com/questions/173621/how-to-validate-check-a-biblatex-bib-file#173622
lint_biber:
	@find -name '*.bib' -exec biber --tool -V {} \;
	@rm -f *.bibertool* *.blg* _bibertool.bib

lint_pybtex:
	@cat *.bib > _lint_pybtext.bib
	@pybtex-convert _lint_pybtext.bib _lint_pybtext.yaml
	@rm -f _lint_pybtext.bib _lint_pybtext.yaml