From 8a1fb6b170a2c00ddf24fef0bd7732bc247f43bd Mon Sep 17 00:00:00 2001 From: Jigme Datse Yli-Rasku Date: Mon, 11 Nov 2024 21:33:05 -0800 Subject: [PATCH] Update dependencies, add bibliography generation This most importantly (probably) adds bibliography generation. Dependencies are updated as well. --- runequest/Makefile | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/runequest/Makefile b/runequest/Makefile index df45d90..abfe8b8 100644 --- a/runequest/Makefile +++ b/runequest/Makefile @@ -1,13 +1,18 @@ -TEXFILES = runequest.tex 000-header.tex 900-footer.tex dedication.tex copyleft.tex acknowledgements.tex licenses.tex introduction.tex license-texts.tex +TEXFILES = runequest.tex 000-header.tex 900-footer.tex dedication.tex copyleft.tex acknowledgements.tex licenses.tex introduction.tex license-texts.tex about-characters.tex character-creation.tex character-information.tex +BIBFILES = mybiblio.bib CLEANFILES = *.dvi *.log *.aux *.lof *.lot *.toc *.png clean: rm $(CLEANFILES) echo "Nothing to clean" -runequest.dvi: $(TEXFILES) - latex runequest.tex - latex runequest.tex +runequest.bbl: $(BIBFILES) + biber runequest + biber runequest + +runequest.dvi: $(TEXFILES) runequest.bbl + latex runequest + latex runequest runequest.pdf: runequest.dvi dvipdf.sh runequest