Files
norumbega/Makefile
2025-03-04 20:01:50 -05:00

11 lines
184 B
Makefile

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