Update dependencies, add bibliography generation
This most importantly (probably) adds bibliography generation. Dependencies are updated as well.
This commit is contained in:
parent
b24652c820
commit
8a1fb6b170
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue