Files
norumbega/Makefile
T
2025-02-25 21:21:49 -05:00

11 lines
175 B
Makefile

BIB = bibliography.bib
STYLE = chicago.csl
%: %.md
pandoc $^ -o $@.pdf --bibliography=$(BIB) --csl=$(STYLE) --pdf-engine=xelatex --citeproc
clean:
rm *.pdf
.PHONY: clean