Files
norumbega/Makefile

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